kythe.io@v0.0.68-0.20240422202219-7225dbc01741/kythe/go/extractors/config/preprocessor/modifier/testdata/other-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 13 allprojects { 14 gradle.projectsEvaluated { 15 tasks.withType(JavaCompile) { 16 options.fork = true 17 options.forkOptions.executable = '/different/javac-wrapper.sh' 18 } 19 } 20 }