Add the durable multi-authority realm, scoped default-deny authorization, approval and break-glass workflows, auditor views and disclosure policy. Enforce all administration through the transport-neutral secured operation gateway while preserving immutable PKI authority and future HTTP reuse.
19 lines
452 B
Groovy
19 lines
452 B
Groovy
plugins {
|
|
id 'buildlogic.java-library-conventions'
|
|
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'
|
|
}
|
|
|
|
javadoc {
|
|
options.links("https://www.egothor.org/javadoc/zeroecho/lib")
|
|
options.links("https://www.egothor.org/javadoc/zeroecho/pki")
|
|
}
|