19 lines
552 B
Groovy
19 lines
552 B
Groovy
|
|
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'
|
|
} |