diff options
author | Thomas <> | 2023-01-11 23:23:30 +0100 |
---|---|---|
committer | Thomas <> | 2023-01-11 23:23:30 +0100 |
commit | 42e68c8f3e53b34663d2fe9c434b0b034ff9ddf0 (patch) | |
tree | de9aceb59655ff02fcbc4100f07fe33d035f34f1 /build.gradle | |
parent | 989f7685e730255a08c32e7a10c090f2ffc22d26 (diff) | |
download | pdf-as-4-42e68c8f3e53b34663d2fe9c434b0b034ff9ddf0.tar.gz pdf-as-4-42e68c8f3e53b34663d2fe9c434b0b034ff9ddf0.tar.bz2 pdf-as-4-42e68c8f3e53b34663d2fe9c434b0b034ff9ddf0.zip |
feat(web): add bulk-light functionality into PDF-AS-Web
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{ |