File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ repositories {
8080
8181dependencies {
8282 vineflowerTool ' org.vineflower:vineflower:1.11.2'
83- implementation( " com.azuredoom.levelingcore:LevelingCore:0.+" )
83+ implementation ' com.azuredoom.levelingcore:LevelingCore:0.+'
8484 vineImplementation ' curse.maven:hyui-1431415:7693755'
8585 vineImplementation ' curse.maven:dynamictooltipslib-1459711:7702598'
8686 vineCompileOnly ' at.helpch:placeholderapi-hytale:1.0.7'
@@ -175,6 +175,13 @@ publishing {
175175 maven(MavenPublication ) {
176176 artifactId base. archivesName. get()
177177 from components. java
178+ pom. withXml {
179+ asNode(). dependencies. dependency. each { dep ->
180+ if (dep. groupId. text() == ' curse.maven' || dep. groupId. text() == ' com.azuredoom' ) {
181+ dep. parent(). remove(dep)
182+ }
183+ }
184+ }
178185 }
179186 }
180187}
You can’t perform that action at this time.
0 commit comments