123456789101112131415161718 |
- if (!hasProperty('mainClass')) {
- ext.mainClass = ''
- }
- dependencies {
- compile project(':jme3-core')
- testCompile project(':jme3-core')
- testCompile project(':jme3-desktop')
- testCompile project(':jme3-core').sourceSets.test.output
- testCompile project(':jme3-testdata')
- }
- javadoc {
- // Disable doclint for JDK8+.
- if (JavaVersion.current().isJava8Compatible()){
- options.addStringOption('Xdoclint:none', '-quiet')
- }
- }
|