Skip to content
This repository has been archived by the owner on Jan 31, 2025. It is now read-only.

Commit

Permalink
Use the IDE's bundled Kotlin library (#271)
Browse files Browse the repository at this point in the history
Fixes #270
  • Loading branch information
yorlov authored Nov 27, 2023
1 parent 950e38a commit a67d45c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ dependencies {
implementation('com.rollbar:rollbar-java:1.7.8') {
exclude group: 'org.slf4j'
}
implementation('org.jetbrains.kotlin:kotlin-stdlib-jdk8')
testImplementation('junit:junit:4.12')
testImplementation('org.assertj:assertj-core:3.8.0')
}
Expand Down Expand Up @@ -123,6 +122,10 @@ compileJava {
}

compileKotlin {
kotlinOptions {
jvmTarget = '11'
apiVersion = '1.4'
}
dependsOn generateSoyLexer
dependsOn generateSoyParser
}
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
kotlin.stdlib.default.dependency=false

0 comments on commit a67d45c

Please sign in to comment.