Added ACME client and possibility to use the cert with the HttpServer

This commit is contained in:
Ziver Koc 2021-08-05 16:39:16 +02:00
parent 2a79a2ba38
commit a27873bedd
11 changed files with 527 additions and 89 deletions

View file

@ -9,14 +9,19 @@ repositories {
}
dependencies {
implementation 'commons-fileupload:commons-fileupload:1.4'
implementation 'commons-io:commons-io:2.7'
implementation 'org.dom4j:dom4j:2.1.3'
implementation 'org.xerial:sqlite-jdbc:3.8.11.2'
compileOnly 'mysql:mysql-connector-java:8.0.16'
compileOnly 'org.xerial:sqlite-jdbc:3.8.11.2'
compileOnly 'javax.servlet:javax.servlet-api:3.1.0'
compileOnly 'org.shredzone.acme4j:acme4j-client:2.12'
compileOnly 'org.shredzone.acme4j:acme4j-utils:2.12'
compileOnly 'commons-fileupload:commons-fileupload:1.4'
compileOnly 'commons-io:commons-io:2.7'
testImplementation 'junit:junit:4.13.1'
testImplementation 'org.hamcrest:hamcrest-core:1.3'
testImplementation 'com.carrotsearch:junit-benchmarks:0.7.2'