build.gradle 240 B

1234567891011
  1. if (!hasProperty('mainClass')) {
  2. ext.mainClass = ''
  3. }
  4. sourceCompatibility = JavaVersion.VERSION_1_8
  5. targetCompatibility = JavaVersion.VERSION_1_8
  6. dependencies {
  7. compile project(':jme3-core')
  8. compile project(':jme3-plugins')
  9. }