We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b0e064 commit 9388a20Copy full SHA for 9388a20
2 files changed
build.gradle.kts
@@ -96,11 +96,3 @@ idea.project.settings {
96
)
97
}
98
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
-}
buildSrc/src/main/kotlin/cel-conventions.gradle.kts
@@ -29,3 +29,9 @@ apply<CelCodeCoveragePlugin>()
29
if (projectDir.resolve("src/test/java").exists()) {
30
nessieConfigureTestTasks()
31
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
+}
0 commit comments