Skip to content

Commit 6aafd45

Browse files
committed
Clean up dependencies
1 parent f396537 commit 6aafd45

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,18 @@ repositories {
1010
}
1111

1212
dependencies {
13-
api 'org.apache.commons:commons-lang3:3.20.0'
14-
api 'com.fasterxml.jackson.core:jackson-databind:2.20.1'
15-
api 'org.reflections:reflections:0.10.2'
16-
api "org.projectlombok:lombok:$lombokVersion"
13+
implementation 'org.apache.commons:commons-lang3:3.20.0'
14+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.20.1'
15+
implementation 'org.reflections:reflections:0.10.2'
16+
compileOnly "org.projectlombok:lombok:$lombokVersion"
1717
annotationProcessor("org.projectlombok:lombok:$lombokVersion")
1818

1919
testImplementation 'junit:junit:4.13.2'
2020
testImplementation 'org.assertj:assertj-core:3.27.6'
2121
testImplementation 'org.mockito:mockito-core:5.21.0'
2222
testImplementation 'org.awaitility:awaitility:4.3.0'
2323
testImplementation 'nl.jqno.equalsverifier:equalsverifier:4.2.5'
24+
testCompileOnly("org.projectlombok:lombok:$lombokVersion")
2425
testAnnotationProcessor("org.projectlombok:lombok:$lombokVersion")
2526
}
2627

0 commit comments

Comments
 (0)