Skip to content

Commit

Permalink
Update maven
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrofab committed Aug 5, 2023
1 parent e881cfb commit 6747143
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'fabric-loom' version "1.0.+"
id 'io.github.ladysnake.chenille' version '0.10.2'
id 'io.github.ladysnake.chenille' version '0.11.3'
id 'io.github.juuxel.loom-quiltflower' version "1.8.0"
}

Expand All @@ -11,7 +11,7 @@ version = project.mod_version
chenille {
configurePublishing {
mainArtifact = remapJar.archiveFile
withArtifactory()
withLadysnakeMaven()
withCurseforgeRelease()
withModrinthRelease()
withGithubRelease()
Expand Down Expand Up @@ -87,6 +87,27 @@ java {
withSourcesJar()
}



publishing {
publications {
create("relocation", MavenPublication) {
pom {
// Old artifact coordinates
groupId = "io.github.ladysnake"

distributionManagement {
relocation {
// New artifact coordinates
groupId = "org.ladysnake"
message = "groupId has been changed"
}
}
}
}
}
}

jar {
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}"}
Expand Down

0 comments on commit 6747143

Please sign in to comment.