2022-03-15 13:15:56 -04:00
|
|
|
// Applied to all modules (sub-projects)
|
2022-03-15 10:39:07 -04:00
|
|
|
|
|
|
|
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)..
|
2022-03-15 21:10:17 -04:00
|
|
|
buildDir = "target"
|
|
|
|
|
|
|
|
configurations.all {
|
|
|
|
exclude group: 'xml-apis', module: 'xml-apis'
|
|
|
|
}
|