Skip to content

Commit

Permalink
Tidy manual build file
Browse files Browse the repository at this point in the history
  • Loading branch information
mkutz committed May 21, 2024
1 parent 9dfb1f4 commit de8a67b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ junitJupiterEngine = { module = "org.junit.jupiter:junit-jupiter-engine", versio
junitJupiterParams = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "junitVersion" }
junitPlatformLauncher = { module = "org.junit.platform:junit-platform-launcher", version = "1.10.2" }
assertjCore = { module = "org.assertj:assertj-core", version.ref = "assertjVersion" }
okHttp = { module = "com.squareup.okhttp3:okhttp", version = "4.12.0" }

[plugins]
asciidoctor = { id = "org.asciidoctor.jvm.convert", version = "4.0.2" }
nexusPublish = { id = "io.github.gradle-nexus.publish-plugin", version = "2.0.0" }
sonar = { id = "org.sonarqube", version = "5.0.0.4638" }
spotless = { id = "com.diffplug.spotless", version = "6.25.0" }
16 changes: 8 additions & 8 deletions manual/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.asciidoctor.jvm.convert") version "4.0.2"
alias(libs.plugins.asciidoctor)
java
}

Expand All @@ -9,14 +9,14 @@ dependencies {
testImplementation(project(":modules:http"))
testImplementation(project(":modules:random"))

testImplementation(platform("org.junit:junit-bom:5.10.2"))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testImplementation("org.junit.jupiter:junit-jupiter-params")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testImplementation(platform(libs.junitBom))
testImplementation(libs.junitJupiterApi)
testImplementation(libs.junitJupiterParams)
testImplementation(libs.assertjCore)
testImplementation(libs.okHttp)

testImplementation("org.assertj:assertj-core:3.25.3")

testImplementation("com.squareup.okhttp3:okhttp:4.12.0")
testRuntimeOnly(libs.junitPlatformLauncher)
testRuntimeOnly(libs.junitJupiterEngine)
}

java { toolchain { languageVersion.set(JavaLanguageVersion.of(17)) } }
Expand Down

0 comments on commit de8a67b

Please sign in to comment.