File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ dependencies {
4848 * them and *then* compile them.
4949 */
5050tasks. named(" compileJava" ). configure {
51- options. compilerArgs . addAll([ " -s " , " ${ projectDir } / src/main/java/generated" ] )
51+ options. generatedSourceOutputDirectory = file( " src/main/java/generated" )
5252}
5353
5454tasks. named(" javadoc" ). configure {
Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ dependencies {
1010 testImplementation(project(xpackModule(' ql' )))
1111}
1212
13+
1314tasks. named(" compileJava" ). configure {
14- options. compilerArgs . addAll([ " -s " , " ${ projectDir } / src/main/generated" ] )
15+ options. generatedSourceOutputDirectory = file( " src/main/generated" )
1516}
1617
1718tasks. named(' checkstyleMain' ). configure {
You can’t perform that action at this time.
0 commit comments