build.gradle 223 B

12345678910
  1. apply plugin: 'java'
  2. dependencies {
  3. compile fileTree(dir: 'libs', include: ['*.jar'])
  4. testCompile 'junit:junit:4.12'
  5. compile 'org.testng:testng:6.9.6'
  6. }
  7. sourceCompatibility = "1.7"
  8. targetCompatibility = "1.7"