Skip to content

Commit 748fff4

Browse files
committed
build > cleanup
1 parent b2bc67e commit 748fff4

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
dependencies {
3-
if (gradle.includedBuilds.find { it.name == "plugins"} != null) {
3+
if (gradle.includedBuilds.find { it.name == "plugins" } != null) {
44
classpath("com.hivemq:plugins")
55
}
66
}
@@ -17,7 +17,7 @@ plugins {
1717
id("com.github.sgtsilvio.gradle.javadoc-links")
1818
}
1919

20-
if (gradle.includedBuilds.find { it.name == "plugins"} != null) {
20+
if (gradle.includedBuilds.find { it.name == "plugins" } != null) {
2121
apply(plugin = "com.hivemq.version-updater")
2222
project.ext.set("versionUpdaterFiles", arrayOf("README.adoc"))
2323
}

settings.gradle.kts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,10 @@ pluginManagement {
1010
}
1111
}
1212

13-
if (file("../plugins").exists()) {
14-
includeBuild("../plugins")
15-
}
1613
if (file("../hivemq-extension-sdk").exists()) {
1714
includeBuild("../hivemq-extension-sdk")
1815
}
19-
16+
if (file("../plugins").exists()) {
17+
includeBuild("../plugins")
18+
}
2019
includeBuild("../hivemq-platform")

0 commit comments

Comments
 (0)