12 lines
268 B
Groovy
12 lines
268 B
Groovy
configurations{
|
|
all*.exclude module: 'commons-math3'
|
|
all*.exclude group: 'org.jfree'
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(':numass-main')){transitive = false}
|
|
compile project(':dataforge-storage')
|
|
compile project(':dataforge-grind')
|
|
}
|
|
|