Skip to content

Commit

Permalink
Upgraded gradle and unit test dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Samir Vaidya committed Sep 25, 2022
1 parent 0010703 commit b0377ff
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,16 @@ sourceSets {
}

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.+'
testImplementation 'org.mockito:mockito-core:3.+'
testImplementation 'org.mockito:mockito-junit-jupiter:3.+'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testImplementation 'org.mockito:mockito-core:4.8.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.0'

testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.+'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
}

compileJava {
sourceCompatibility = '11'
targetCompatibility = '11'
sourceCompatibility = '8'
targetCompatibility = '8'
}

processResources {
Expand Down Expand Up @@ -92,9 +92,9 @@ test {
jacocoTestReport {
dependsOn test
reports {
xml.enabled false
csv.enabled false
html.enabled true
xml.required = false
csv.required = false
html.required = true
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit b0377ff

Please sign in to comment.