17 lines
406 B
Groovy
17 lines
406 B
Groovy
plugins {
|
|
id 'buildlogic.java-library-conventions'
|
|
id 'com.palantir.git-version'
|
|
}
|
|
|
|
group 'org.egothor'
|
|
|
|
dependencies {
|
|
implementation 'org.bouncycastle:bcpkix-jdk18on'
|
|
implementation 'org.egothor:conflux'
|
|
implementation 'org.apache.commons:commons-imaging'
|
|
}
|
|
|
|
javadoc {
|
|
options.links("https://www.egothor.org/javadoc/conflux")
|
|
options.overview = file("src/main/javadoc/overview.html")
|
|
} |