File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ jar {
144
144
}
145
145
}
146
146
147
- task fullJar (type : Jar ) {
147
+ task uberJar (type : Jar ) {
148
148
mustRunAfter(jar, javadocJar, sourcesJar)
149
149
duplicatesStrategy = DuplicatesStrategy . INCLUDE
150
150
@@ -153,15 +153,15 @@ task fullJar (type: Jar) {
153
153
' Compile-Version' : project. version
154
154
}
155
155
156
- archiveFileName = project. name + " -" + project. version + " -FULL .jar"
156
+ archiveFileName = project. name + " -" + project. version + " -UBER .jar"
157
157
from configurations. compileClasspath. collect {
158
158
it. isDirectory() ? it : zipTree(it)
159
159
}
160
160
with jar
161
161
}
162
162
163
- // Add the fullJar task to the build lifecycle.
164
- processTestResources. dependsOn(fullJar )
163
+ // Add the uberJar task to the build lifecycle.
164
+ processTestResources. dependsOn(uberJar )
165
165
166
166
publishing {
167
167
publications {
You can’t perform that action at this time.
0 commit comments