Skip to content

Commit

Permalink
Unify version of JUnit. Fix Sonarlint mapping.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfuchss committed Aug 23, 2024
1 parent d2e8cf2 commit ff17e47
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .idea/sonarlint.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ used to grade Artemis based exercises.
- run gradle target `runIde` to get a development version of the IDE

## Features

6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ dependencies {
implementation 'de.firemage.autograder:autograder-cmd:' + AUTOGRADER_VERION
implementation 'de.firemage.autograder:autograder-core:' + AUTOGRADER_VERION
implementation 'de.firemage.autograder:autograder-extra:' + AUTOGRADER_VERION
//Tests
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.3'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.3'
// Tests
testImplementation 'org.junit.jupiter:junit-jupiter-api:' + JUNIT_VERSION
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:' + JUNIT_VERSION
}

intellij {
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
AUTOGRADER_VERION = 0.5.41
JUNIT_VERSION = 5.11.0

0 comments on commit ff17e47

Please sign in to comment.