Skip to content

Commit

Permalink
Set group and version in root and sync with subproject
Browse files Browse the repository at this point in the history
Moved the group and version definitions to the root project while referencing these values in the API subproject. This ensures consistent versioning and grouping across all modules.
  • Loading branch information
NonSwag committed Dec 26, 2024
1 parent 49b61c7 commit 6e73ad2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ tasks.compileJava {
options.release.set(21)
}

group = "net.thenextlvl.worlds"
version = "2.0.4"
group = rootProject.group
version = rootProject.version

repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ tasks.compileJava {
options.release.set(21)
}

group = project(":api").group
version = project(":api").version
group = "net.thenextlvl.worlds"
version = "2.0.5"

repositories {
mavenCentral()
Expand Down

0 comments on commit 6e73ad2

Please sign in to comment.