13 lines
320 B
Groovy
13 lines
320 B
Groovy
// Applied to all modules (sub-projects)
|
|
|
|
apply from: rootProject.file( 'gradle/base-information.gradle' )
|
|
|
|
apply plugin: 'idea'
|
|
apply plugin: 'eclipse'
|
|
|
|
// minimize changes, at least for now (gradle uses 'build' by default)..
|
|
buildDir = "target"
|
|
|
|
configurations.all {
|
|
exclude group: 'xml-apis', module: 'xml-apis'
|
|
} |