kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/extractors/config/preprocessor/modifier/testdata/modified-build.gradle (about)

     1  apply plugin: 'java'
     2  
     3  dependencies {
     4    testCompile('junit:junit:4.12')
     5  }
     6  
     7  jar {
     8    manifest {
     9      attributes 'Main-Class': 'com.google.test.Foo'
    10    }
    11  }
    12  allprojects {
    13    gradle.projectsEvaluated {
    14      tasks.withType(JavaCompile) {
    15        options.fork = true
    16        options.forkOptions.executable = '/tmp/javac-wrapper.sh'
    17      }
    18    }
    19  }