Skip to content

Commit

Permalink
Reintroduce archive classifiers, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ChloeDawn committed Jun 23, 2022
1 parent f49914c commit cec234a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "dev.sapphic"
version = "5.0.0"
version = "5.1.0"

java {
withSourcesJar()
Expand Down Expand Up @@ -112,6 +112,14 @@ tasks {
)
}

remapJar {
archiveClassifier.set("fabric")
}

remapSourcesJar {
archiveClassifier.set("fabric-sources")
}

if (hasProperty("signing.mods.keyalias")) {
val alias = property("signing.mods.keyalias")
val keystore = property("signing.mods.keystore")
Expand Down

0 comments on commit cec234a

Please sign in to comment.