Skip to content

Commit

Permalink
Feature/versions (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
jactor-rises authored May 22, 2024
2 parents 98aaa1a + 74aaf16 commit c6376a3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id("com.github.ben-manes.versions") version "0.46.0" apply false
id("io.spring.dependency-management") version "1.1.0" apply false

kotlin("plugin.spring") version "1.9.23" apply false
kotlin("plugin.spring") version "2.0.0" apply false
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ tasks.compileKotlin {
}

dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.0")
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,15 @@ dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")

// cucumber
testImplementation("io.cucumber:cucumber-java:7.17.0")
testImplementation("io.cucumber:cucumber-java8:7.17.0")
testImplementation("io.cucumber:cucumber-junit-platform-engine:7.17.0")
testImplementation("io.cucumber:cucumber-spring:7.17.0")
testImplementation("io.cucumber:cucumber-java:7.18.0")
testImplementation("io.cucumber:cucumber-java8:7.18.0")
testImplementation("io.cucumber:cucumber-junit-platform-engine:7.18.0")
testImplementation("io.cucumber:cucumber-spring:7.18.0")
}

tasks {
compileKotlin {
kotlinOptions {
allWarningsAsErrors = true
}
tasks.compileKotlin {
compilerOptions {
allWarningsAsErrors = true
}
}

Expand Down
2 changes: 1 addition & 1 deletion persistence/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ dependencies {

tasks.test {
jvmArgs("--add-opens", "java.base/java.lang.reflect=ALL-UNNAMED")
}
}

0 comments on commit c6376a3

Please sign in to comment.