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.
2 parents 879fbaf + 17b1c0c commit c79a283Copy full SHA for c79a283
build.gradle
@@ -13,6 +13,7 @@ buildscript {
13
14
plugins {
15
id 'org.jetbrains.kotlin.jvm' version "$kotlinVersion"
16
+ id 'maven-publish'
17
}
18
19
apply plugin: 'net.minecraftforge.gradle'
@@ -198,7 +199,11 @@ reobf {
198
199
200
201
-artifacts {
202
- shadowJar
203
-}
204
-
+publishing {
+ publications {
+ api(MavenPublication) {
205
+ artifact source: buildApi, classifier: null
206
+ artifact source: buildApiSource, classifier: 'sources'
207
+ }
208
209
+}
0 commit comments