We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7572664 commit 8b36278Copy full SHA for 8b36278
build.gradle
@@ -224,15 +224,15 @@ tasks.test {
224
// Example configuration to allow publishing using the maven-publish plugin
225
226
//def reobfJarFile = tasks.named('jar').get().archiveFile.get().asFile.absolutePath
227
-tasks.remapJar {
+/*tasks.remapJar {
228
archiveClassifier.set("mapped_official_${minecraft_version}")
229
-}
+}*/
230
+
231
publishing {
232
publications {
233
mavenJava(MavenPublication) {
- artifact(tasks.remapJar) {
234
- classifier = tasks.remapJar.archiveClassifier.get()
235
- }
+ from components.java
+ //artifactId = "FormicAPI" // ✅ no spaces or invalid chars
236
}
237
238
0 commit comments