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 8b148e2 commit f4ffe3fCopy full SHA for f4ffe3f
build.gradle
@@ -43,7 +43,7 @@ configurations {
43
shadedCompile
44
}
45
46
-configurations.compileOnly.extendsFrom configurations.shadedCompile
+configurations.compile.extendsFrom configurations.shadedCompile
47
48
dependencies {
49
/*
@@ -141,4 +141,20 @@ bintray {
141
vcsTag = project.version
142
143
144
-}
+}
145
+
146
+publishing {
147
+ publications {
148
+ nebula(MavenPublication) {
149
+ pom.withXml {
150
+ asNode()
151
+ .dependencies
152
+ .dependency
153
+ .findAll {
154
+ ['commons-lang'].contains(it.artifactId.text())
155
+ }
156
+ .each { it.parent().remove(it) }
157
158
159
160
0 commit comments