We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87ba6de commit ff4f3a7Copy full SHA for ff4f3a7
build.gradle
@@ -157,6 +157,14 @@ publishing {
157
developerConnection = 'scm:git:ssh://github.com/jtljac/datmoddingapi.git'
158
url = 'https://datdeveloper.com/datmoddingapi/'
159
}
160
+
161
+ withXml {
162
+ asNode().dependencies.dependency.each { dep ->
163
+ if(dep.artifactId.last().value().last() == "forge") {
164
+ assert dep.parent().remove(dep)
165
+ }
166
167
168
169
170
@@ -179,3 +187,7 @@ jar.finalizedBy('reobfJar')
179
187
tasks.withType(JavaCompile).configureEach {
180
188
options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation
181
189
190
191
+tasks.withType(GenerateModuleMetadata) {
192
+ enabled = false
193
+}
0 commit comments