diff options
author | Thomas <> | 2023-01-12 12:58:24 +0100 |
---|---|---|
committer | Thomas <> | 2023-01-12 12:58:24 +0100 |
commit | e0ac5d79c01e458eeb5eb4233f8a0360db878911 (patch) | |
tree | e1760ce016e3f6c8eb0563bff175bf75a90afde0 /build.gradle | |
parent | e69ba716ebae7307645ff9c640967d58ef48b9f4 (diff) | |
download | pdf-as-4-e0ac5d79c01e458eeb5eb4233f8a0360db878911.tar.gz pdf-as-4-e0ac5d79c01e458eeb5eb4233f8a0360db878911.tar.bz2 pdf-as-4-e0ac5d79c01e458eeb5eb4233f8a0360db878911.zip |
feat(signatureblock): optimize processing for signed documents with less space for signature block
Issue #73
add configuration property to stop signing process if
document has less space for new signature block and
new page is not allowed because document is already signed
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 4d5f0d41..af7e5af3 100644 --- a/build.gradle +++ b/build.gradle @@ -46,6 +46,8 @@ subprojects { } dependencies { + 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' } @@ -58,7 +60,7 @@ subprojects { archives sourcesJar } - sourceCompatibility = 1.7 + sourceCompatibility = 1.8 compileJava.options.encoding = "UTF-8" compileTestJava.options.encoding = "UTF-8" project.ext{ |