2020-05-16 21:39:13 +02:00
|
|
|
rootProject.name = 'antville'
|
|
|
|
|
|
|
|
// Copy task ignores multiple files per default
|
|
|
|
// See https://github.com/gradle/gradle/issues/11176
|
|
|
|
org.apache.tools.ant.DirectoryScanner.removeDefaultExclude('**/.git')
|
|
|
|
org.apache.tools.ant.DirectoryScanner.removeDefaultExclude('**/.git/**')
|
|
|
|
org.apache.tools.ant.DirectoryScanner.removeDefaultExclude('**/.gitattributes')
|
|
|
|
org.apache.tools.ant.DirectoryScanner.removeDefaultExclude('**/.gitignore')
|
|
|
|
|
|
|
|
include 'antclick'
|
|
|
|
project(':antclick').projectDir = file('tools/antclick')
|
|
|
|
|
2020-05-17 14:12:50 +02:00
|
|
|
startParameter.excludedTaskNames = ['jar', 'javadoc']
|