You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
With #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).
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
The text was updated successfully, but these errors were encountered: