Skip to content

Commit

Permalink
Remove redundant dependency declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
sambsnyd committed Aug 31, 2023
1 parent 32cea00 commit 46c0723
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,14 @@ description = "Rewrite recipes."
// The bom version can also be set to a specific version or latest.release.
val latest = "latest.integration"
dependencies {
compileOnly("org.projectlombok:lombok:latest.release")
compileOnly("com.google.code.findbugs:jsr305:latest.release")
annotationProcessor("org.projectlombok:lombok:latest.release")
implementation(platform("org.openrewrite:rewrite-bom:${latest}"))

implementation("org.openrewrite:rewrite-java")
runtimeOnly("org.openrewrite:rewrite-java-17")
// Need to have a slf4j binding to see any output enabled from the parser.
runtimeOnly("ch.qos.logback:logback-classic:1.2.+")

testImplementation("org.junit.jupiter:junit-jupiter-api:latest.release")
testImplementation("org.junit.jupiter:junit-jupiter-params:latest.release")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:latest.release")
testRuntimeOnly("com.google.guava:guava:latest.release")

testImplementation("org.openrewrite:rewrite-test")
testImplementation("org.assertj:assertj-core:latest.release")
}

configure<PublishingExtension> {
Expand Down

0 comments on commit 46c0723

Please sign in to comment.