14 lines
325 B
Groovy
14 lines
325 B
Groovy
plugins {
|
|
id 'buildlogic.java-library-conventions'
|
|
id 'com.palantir.git-version' version '4.0.0'
|
|
}
|
|
|
|
group 'org.egothor'
|
|
version gitVersion(prefix:'release@')
|
|
|
|
dependencies {
|
|
implementation 'org.bouncycastle:bcpkix-jdk18on'
|
|
implementation 'org.egothor:conflux'
|
|
implementation 'org.apache.commons:commons-imaging'
|
|
}
|