build.gradle 238 B

123456789101112131415
  1. apply plugin: 'java'
  2. targetCompatibility = 1.8
  3. sourceCompatibility = 1.8
  4. repositories {
  5. mavenCentral()
  6. }
  7. dependencies {
  8. testCompile group: 'junit', name: 'junit', version: '4.11'
  9. compile 'org.jetbrains:annotations:15.0'
  10. }