Skip to content

Commit 1361aa0

Browse files
committed
build > sort plugins
1 parent 04de24d commit 1361aa0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ paho.version=1.2.0
2626
#
2727
plugin.shadow.version=5.2.0
2828
plugin.bnd.version=5.3.0
29-
plugin.license.version=0.15.0
29+
plugin.nexus-publish.version=1.0.0
3030
plugin.github-release.version=2.2.12
31+
plugin.license.version=0.15.0
3132
plugin.utf8.version=0.1.0
3233
plugin.metadata.version=0.2.0
3334
plugin.javadoc-links.version=0.3.0
34-
plugin.nexus.publish.version=1.0.0
3535
#
3636
# options
3737
#

settings.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ pluginManagement {
88
plugins {
99
id("com.github.johnrengelman.shadow") version "${extra["plugin.shadow.version"]}"
1010
id("biz.aQute.bnd.builder") version "${extra["plugin.bnd.version"]}"
11-
id("com.github.hierynomus.license") version "${extra["plugin.license.version"]}"
11+
id("io.github.gradle-nexus.publish-plugin") version "${extra["plugin.nexus-publish.version"]}"
1212
id("com.github.breadmoirai.github-release") version "${extra["plugin.github-release.version"]}"
13+
id("com.github.hierynomus.license") version "${extra["plugin.license.version"]}"
1314
id("com.github.sgtsilvio.gradle.utf8") version "${extra["plugin.utf8.version"]}"
1415
id("com.github.sgtsilvio.gradle.metadata") version "${extra["plugin.metadata.version"]}"
1516
id("com.github.sgtsilvio.gradle.javadoc-links") version "${extra["plugin.javadoc-links.version"]}"
16-
id("io.github.gradle-nexus.publish-plugin") version "${extra["plugin.nexus.publish.version"]}"
1717
}
1818
}
1919

@@ -23,7 +23,7 @@ dependencyResolutionManagement {
2323
}
2424
}
2525

26-
listOf("websocket", "proxy", "epoll", "reactor", "examples").forEach { module ->
26+
for (module in listOf("websocket", "proxy", "epoll", "reactor", "examples")) {
2727
include("${rootProject.name}-$module")
2828
project(":${rootProject.name}-$module").projectDir = file(module)
2929
}

0 commit comments

Comments
 (0)