Files
ZeroEcho/pki-server/build.gradle
Leo Galambos d7793e5c49 feat(pki-server): add secure administrative HTTPS API
Add the mutually authenticated administrative HTTPS server with strict
typed JSON, bounded request execution, multi-authority authorization,
approval enforcement, safe auditing and finite shutdown.

Reuse one long-lived realm and PKI session without duplicating backend
authority or operation semantics.
2026-08-04 20:16:34 +02:00

36 lines
867 B
Groovy

plugins {
id 'buildlogic.java-library-conventions'
id 'application'
id 'com.palantir.git-version'
}
group = 'org.egothor'
dependencies {
api project(':pki')
implementation project(':lib')
implementation platform('tools.jackson:jackson-bom:3.1.5')
implementation 'tools.jackson.core:jackson-core'
testImplementation 'org.bouncycastle:bcpkix-jdk18on:1.84'
}
application {
mainClass = 'zeroecho.pki.server.PkiServerMain'
applicationName = 'zeroecho-pki-server'
}
jar {
manifest {
attributes(
'Main-Class': application.mainClass,
'Implementation-Title': 'ZeroEcho PKI Server',
'Implementation-Version': "${version}"
)
}
}
javadoc {
options.links("https://www.egothor.org/javadoc/zeroecho/lib")
options.links("https://www.egothor.org/javadoc/zeroecho/pki")
}