Skip to content

Commit

Permalink
Move immutables to compileOnlyApi (#1099)
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoenig10 committed Feb 7, 2024
1 parent 4dd226d commit fe384cf
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions errors/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@ apply plugin: 'com.palantir.external-publish-jar'
apply plugin: 'com.palantir.revapi'

dependencies {
annotationProcessor "org.immutables:value"

compileOnlyApi 'org.immutables:value::annotations'

api "com.fasterxml.jackson.core:jackson-databind"
api "com.google.code.findbugs:jsr305"
api "com.palantir.safe-logging:safe-logging"
api 'org.immutables:value::annotations'
api "org.jetbrains:annotations"

implementation "com.palantir.safe-logging:preconditions"

testImplementation project(":extras:jackson-support")
testImplementation "com.palantir.safe-logging:preconditions-assertj"
testImplementation "org.assertj:assertj-core"
testImplementation "org.apache.commons:commons-lang3"
testImplementation 'org.junit.jupiter:junit-jupiter'

annotationProcessor "org.immutables:value"
}

0 comments on commit fe384cf

Please sign in to comment.