23 lines
568 B
Groovy
23 lines
568 B
Groovy
|
plugins {
|
||
|
id 'java-library'
|
||
|
id 'maven-publish'
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
|
||
|
implementation 'org.junit.jupiter:junit-jupiter-api'
|
||
|
implementation 'org.junit.jupiter:junit-jupiter-engine'
|
||
|
|
||
|
|
||
|
implementation project(":cavis-dnn:cavis-dnn-api")
|
||
|
implementation project(":cavis-dnn:cavis-dnn-common")
|
||
|
|
||
|
implementation ("org.reflections:reflections") {
|
||
|
exclude group: 'com.google.code.findbugs', module: '*'
|
||
|
}
|
||
|
|
||
|
implementation 'org.springframework:spring-core'
|
||
|
implementation "org.bytedeco:javacpp"
|
||
|
implementation 'org.slf4j:slf4j-api'
|
||
|
}
|