Skip to content

Commit 69c93a8

Browse files
committed
fix: group id name
1 parent aff7cfa commit 69c93a8

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ val timestamp = System.currentTimeMillis() // Temporary to be able to build and
1515
val snapshotVersion = "${baseVersion}-dev.${timestamp}-${commitHash}"
1616

1717
allprojects {
18-
group = "app.simplecloud.plugin"
18+
group = "app.simplecloud.api"
1919
version = if (commitHash != null) snapshotVersion else baseVersion
2020

2121
repositories {
@@ -33,6 +33,10 @@ tasks.named("shadowJar", ShadowJar::class).configure {
3333
}
3434

3535
subprojects {
36+
if (project.path.startsWith(":platform:")) {
37+
group = "app.simplecloud.app.platform"
38+
}
39+
3640
apply {
3741
plugin(rootProject.libs.plugins.shadow.get().pluginId)
3842
plugin(rootProject.libs.plugins.kotlin.jvm.get().pluginId)

settings.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
rootProject.name = "cloud-api"
22

3-
include("platform:spigot", "platform:paper", "platform:bungeecord", "platform:velocity", "platform:spigot")
3+
include(
4+
"platform:spigot",
5+
"platform:paper",
6+
"platform:bungeecord",
7+
"platform:velocity"
8+
)

0 commit comments

Comments
 (0)