Skip to content

Commit b19319d

Browse files
authored
Merge pull request #229 from graphql-java/kotlin-stdlib-should-not-be-a-pom-dep
Kotlin stdlib should not be a pom dep
2 parents f7db493 + 7813318 commit b19319d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ dependencies {
100100
errorprone 'com.google.errorprone:error_prone_core:2.41.0'
101101

102102
// just tests
103-
testCompileOnly 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
103+
testImplementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
104104
}
105105

106106
tasks.withType(JavaCompile) {

gradle.properties

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,8 @@ hamcrest_version=2.2
2323
awaitility_version=2.0.0
2424
reactor_core_version=3.6.6
2525
caffeine_version=3.1.8
26-
reactive_streams_version=1.0.3
26+
reactive_streams_version=1.0.3
27+
# Prevents the Kotlin stdlib being a POM dependency
28+
#
29+
# https://kotlinlang.org/docs/gradle-configure-project.html#dependency-on-the-standard-library
30+
kotlin.stdlib.default.dependency=false

0 commit comments

Comments
 (0)