Home | History | Annotate | Download | only in checkstyle
      1 apply plugin: 'java'
      2 
      3 compileJava {
      4     sourceCompatibility = JavaVersion.VERSION_1_7
      5     targetCompatibility = JavaVersion.VERSION_1_7
      6 }
      7 
      8 dependencies {
      9     compile files('../../../../prebuilts/checkstyle/checkstyle.jar')
     10 }
     11 
     12 sourceSets {
     13     main.java.srcDir 'src'
     14 }
     15 
     16 jar {
     17     from sourceSets.main.output
     18     baseName = "com.android.support.checkstyle"
     19     destinationDir = new File("prebuilt")
     20 }
     21