diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index fab5e81a..e990df14 100644 --- a/build.gradle +++ b/build.gradle @@ -58,7 +58,9 @@ subprojects { } dependencies { - testImplementation 'junit:junit:4.13.2' + compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.24' + annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.24' + testImplementation 'junit:junit:4.13.2' } task sourcesJar(type: Jar, dependsOn: classes) { @@ -70,7 +72,7 @@ subprojects { archives sourcesJar } - sourceCompatibility = 1.7 + sourceCompatibility = 1.8 compileJava.options.encoding = "UTF-8" compileTestJava.options.encoding = "UTF-8" project.ext{ |