build.gradle 456 B

123456789101112131415161718
  1. if (!hasProperty('mainClass')) {
  2. ext.mainClass = ''
  3. }
  4. dependencies {
  5. compile project(':jme3-core')
  6. testCompile project(':jme3-core')
  7. testCompile project(':jme3-desktop')
  8. testCompile project(':jme3-core').sourceSets.test.output
  9. testCompile project(':jme3-testdata')
  10. }
  11. javadoc {
  12. // Disable doclint for JDK8+.
  13. if (JavaVersion.current().isJava8Compatible()){
  14. options.addStringOption('Xdoclint:none', '-quiet')
  15. }
  16. }