Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
id("com.vanniktech.maven.publish") version "0.34.0"
}

group = "xyz.atrius"
group = "io.github.atriusx"

repositories {
mavenCentral()
Expand All @@ -32,8 +32,6 @@ kotlin {
jvmToolchain(17)
}

val namespace: String by project

mavenPublishing {

configure(
Expand All @@ -47,7 +45,7 @@ mavenPublishing {
signAllPublications()

coordinates(
groupId = namespace,
groupId = group as String,
artifactId = rootProject.name.lowercase(),
version = property("version") as String
)
Expand Down Expand Up @@ -102,7 +100,7 @@ gradlePlugin {
// it into useful dependency/project relations. This will then substitute out the selected dependencies
// for the local projects provided in the configuration.
create("Compositor") {
id = "$namespace.compositor"
id = "$group.compositor"
implementationClass = "$group.Compositor"
}
}
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ projectWebsite=https://github.com/AtriusX/Compositor
projectDescription=Orchestrate Gradle composite builds with minimal effort
license=MIT License
licenseLink=https://github.com/AtriusX/Compositor/blob/main/LICENSE
namespace=io.github.atriusx
developerName=Atrius
githubProfile=https://github.com/AtriusX
scmUrl=https://github.com/AtriusX/Compositor
Expand Down