Skip to content

Commit

Permalink
switch to lombok plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
kjozsa committed Oct 7, 2024
1 parent 7f1a520 commit 8081b69
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -685,8 +685,9 @@ configure(project.fineractCustomProjects) {
exclude(module: "slf4j-api")
}

compileOnly('org.projectlombok:lombok')
annotationProcessor('org.projectlombok:lombok')
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'

annotationProcessor('org.mapstruct:mapstruct-processor')
annotationProcessor('org.springframework.boot:spring-boot-autoconfigure-processor')
annotationProcessor('org.springframework.boot:spring-boot-configuration-processor')
Expand Down
5 changes: 2 additions & 3 deletions fineract-e2e-tests-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ plugins {
id 'java'
}

apply plugin: 'io.freefair.lombok'

repositories {
mavenCentral()
}
Expand Down Expand Up @@ -51,9 +53,6 @@ dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'

testCompileOnly 'org.projectlombok:lombok:1.18.34'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.34'

testImplementation "ch.qos.logback:logback-core:1.5.8"
testImplementation "ch.qos.logback:logback-classic:1.5.8"

Expand Down
4 changes: 1 addition & 3 deletions fineract-e2e-tests-runner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ plugins {

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'io.freefair.lombok'

repositories {
mavenCentral()
Expand Down Expand Up @@ -54,9 +55,6 @@ dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'

testCompileOnly 'org.projectlombok:lombok:1.18.34'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.34'

testImplementation "ch.qos.logback:logback-core:1.5.8"
testImplementation "ch.qos.logback:logback-classic:1.5.8"

Expand Down
2 changes: 2 additions & 0 deletions fineract-progressive-loan/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
*/
description = "Fineract Progressive Loan"

apply(plugin = "io.freefair.lombok")

dependencies {
implementation(project(":fineract-accounting"))
implementation(project(":fineract-charge"))
Expand Down

0 comments on commit 8081b69

Please sign in to comment.