13

次のようなgradleビルドスクリプトがあります。

apply plugin: 'war'

task genSources << {
  // here I generate some java files
}

// making sure that source files are generated
// before compilation
compileJava.dependsOn(genSources)

compile で生成されたファイルをduringのgenSourcesファイルと一緒に作成するにはどうすればよいですか?src/main/javacompileJava

4

1 に答える 1