Skip to content

Commit

Permalink
update test dependencies and gradle (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinSchramm authored Oct 29, 2021
1 parent 5296c7e commit 0723b7d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ subprojects {
dependencies {
api("org.jetbrains.kotlin:kotlin-reflect")
api("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
testImplementation(platform("org.junit:junit-bom:5.7.0"))
testImplementation(platform("org.junit:junit-bom:5.8.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
}

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-6.8.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions spring-json-api/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
dependencies {
api(group = "org.springframework.boot", name = "spring-boot-starter-web")

testImplementation("io.mockk:mockk:1.10.6")
testImplementation("io.mockk:mockk:1.12.0")
}

publishingInfo {
description = "SpringBoot json api response classes and advices"
}
publishing{
publishing {
val sourcesJarSubProject by tasks.creating(Jar::class) {
dependsOn("classes")
archiveClassifier.set("sources")
Expand Down

0 comments on commit 0723b7d

Please sign in to comment.