Skip to content

Commit d08cf4f

Browse files
committed
Update build.gradle
1 parent 6c74a57 commit d08cf4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,18 +161,18 @@ if (project.hasProperty('release')) {
161161
apply plugin: 'signing'
162162
apply plugin: 'maven'
163163

164-
task javadocJar(type: Jar) {
164+
task deployingJavadocJar(type: Jar) {
165165
classifier = 'javadoc'
166166
from javadoc
167167
}
168168

169-
task sourcesJar(type: Jar) {
169+
task deployingSourcesJar(type: Jar) {
170170
classifier = 'sources'
171171
from sourceSets.main.allSource
172172
}
173173

174174
artifacts {
175-
archives javadocJar, sourcesJar
175+
archives deployingJavadocJar, deployingSourcesJar
176176
}
177177

178178
// Signature of artifacts

0 commit comments

Comments
 (0)