micro-server icon indicating copy to clipboard operation
micro-server copied to clipboard

Remove compile dependancy on lombok

Open morrowgi opened this issue 6 years ago • 1 comments

The following is in the build.gradle file of micro-server and it should be removed:

compile(group: 'org.projectlombok', name: 'lombok', version:'1.16.2') { This dependency was originally in the Maven provided scope, but the project was not of type war.   This behavior is not yet supported by Gradle, so this dependency has been converted to a compile dependency.   Please review and delete this closure when resolved.   }

This should use provided scope

morrowgi avatar Jul 10 '17 14:07 morrowgi

With https://github.com/aol/micro-server/pull/381 We could remove this bug. It introduces new gradle wrapper version 2.14.1 with the use of compileOnly dependency strategy to avoid transitive dependencies and use them only on compiling time (lombok).

More info here: https://projectlombok.org/setup/gradle https://blog.gradle.org/introducing-compile-only-dependencies

quike avatar Oct 21 '17 15:10 quike