Skip to content

Commit

Permalink
Renamed artifacts to be MC version
Browse files Browse the repository at this point in the history
  • Loading branch information
TechPizzaDev committed Oct 7, 2024
1 parent 1222a4d commit 3a648cf
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -96,18 +96,14 @@ file("mappings").eachDir { dir ->
publications {
def publishName = "${mcVersion.replace(" ", "_")}"
create(publishName, MavenPublication) {
groupId "babric"
artifactId "intermediary"
version artifactVersion
artifactId artifactVersion
artifact(makeV1Jar)
artifact(makeV2Jar) {
classifier = "v2"
}
}
create(publishName + "-upstream", MavenPublication) {
groupId "babric"
artifactId "intermediary-upstream"
version artifactVersion
artifactId artifactVersion + "-upstream"
artifact(makeUpstreamV1Jar)
artifact(makeUpstreamV2Jar) {
classifier = "v2"
Expand Down

0 comments on commit 3a648cf

Please sign in to comment.