Skip to content

Commit 9c3353e

Browse files
authored
Update build.gradle
1 parent 1b51548 commit 9c3353e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jar {
144144
}
145145
}
146146

147-
task fullJar (type: Jar) {
147+
task uberJar (type: Jar) {
148148
mustRunAfter(jar, javadocJar, sourcesJar)
149149
duplicatesStrategy = DuplicatesStrategy.INCLUDE
150150

@@ -153,15 +153,15 @@ task fullJar (type: Jar) {
153153
'Compile-Version': project.version
154154
}
155155

156-
archiveFileName = project.name + "-" + project.version + "-FULL.jar"
156+
archiveFileName = project.name + "-" + project.version + "-UBER.jar"
157157
from configurations.compileClasspath.collect {
158158
it.isDirectory() ? it : zipTree(it)
159159
}
160160
with jar
161161
}
162162

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)
165165

166166
publishing {
167167
publications {

0 commit comments

Comments
 (0)