2022-09-20 15:40:53 +02:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'java-library'
|
|
|
|
id 'maven-publish'
|
|
|
|
id 'signing'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api platform(project(':cavis-common-platform'))
|
|
|
|
|
|
|
|
implementation 'com.google.guava:guava'
|
|
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind'
|
|
|
|
implementation 'org.slf4j:slf4j-api'
|
|
|
|
implementation 'commons-io:commons-io'
|
|
|
|
implementation 'commons-codec:commons-codec'
|
|
|
|
implementation 'org.apache.commons:commons-math3'
|
|
|
|
implementation 'org.apache.commons:commons-lang3'
|
|
|
|
implementation 'org.apache.commons:commons-compress'
|
2022-10-06 13:22:06 +02:00
|
|
|
|
|
|
|
testRuntimeOnly 'net.brutex.ai:dl4j-test-resources:1.0.1-SNAPSHOT'
|
|
|
|
}
|