File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed
Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -96,11 +96,3 @@ idea.project.settings {
9696 )
9797 }
9898}
99-
100- subprojects.forEach {
101- it.tasks.register(" compileAll" ).configure {
102- group = " build"
103- description = " Runs all compilation and jar tasks"
104- dependsOn(tasks.withType<AbstractCompile >(), tasks.withType<ProcessResources >())
105- }
106- }
Original file line number Diff line number Diff line change @@ -29,3 +29,9 @@ apply<CelCodeCoveragePlugin>()
2929if (projectDir.resolve(" src/test/java" ).exists()) {
3030 nessieConfigureTestTasks()
3131}
32+
33+ tasks.register(" compileAll" ).configure {
34+ group = " build"
35+ description = " Runs all compilation and jar tasks"
36+ dependsOn(tasks.withType<AbstractCompile >(), tasks.withType<ProcessResources >())
37+ }
You can’t perform that action at this time.
0 commit comments