Skip to content

Commit b5c89e6

Browse files
committed
Exclude missing tasks for frontend and add idea plugin
1 parent 2a89bea commit b5c89e6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
group = "com.hivemq"
22

33
plugins {
4+
idea
45
id("com.hivemq.edge-version-updater")
56
id("com.hivemq.repository-convention")
67
id("io.github.sgtsilvio.gradle.oci") version "0.22.0"
@@ -51,11 +52,11 @@ tasks.register("jacocoTestReport") {
5152
}
5253

5354
tasks.register("classes") {
54-
dependsOn(gradle.includedBuilds.map { it.task(":$name") })
55+
dependsOn(gradle.includedBuilds.filter { it.name != "hivemq-edge-frontend" }.map { it.task(":$name") })
5556
}
5657

5758
tasks.register("testClasses") {
58-
dependsOn(gradle.includedBuilds.map { it.task(":$name") })
59+
dependsOn(gradle.includedBuilds.filter { it.name != "hivemq-edge-frontend" }.map { it.task(":$name") })
5960
}
6061

6162

hivemq-edge/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ buildscript {
2121

2222
plugins {
2323
java
24+
idea
2425
`java-library`
2526
`maven-publish`
2627
signing

0 commit comments

Comments
 (0)