Skip to content

Commit

Permalink
Exclude unneeded kotlin standard libarry dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sambsnyd committed Jun 10, 2022
1 parent 4f6a49a commit ca6cf0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,13 @@ val rewriteVersion = if(project.hasProperty("releasing")) {
dependencies {
implementation("org.openrewrite:rewrite-java:$rewriteVersion")
implementation("org.openrewrite:rewrite-maven:$rewriteVersion")
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
runtimeOnly("com.fasterxml.jackson.core:jackson-core:2.12.+")
runtimeOnly("org.openrewrite:rewrite-java-11:$rewriteVersion")

compileOnly("org.projectlombok:lombok:latest.release")
annotationProcessor("org.projectlombok:lombok:latest.release")

testImplementation(platform("org.jetbrains.kotlin:kotlin-bom"))
testImplementation("org.jetbrains.kotlin:kotlin-reflect")
testImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
testImplementation("org.openrewrite:rewrite-java-11:$rewriteVersion")
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
org.gradle.caching=true
org.gradle.parallel=true
kotlin.stdlib.default.dependency=false

0 comments on commit ca6cf0a

Please sign in to comment.