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 6c74a57 commit d08cf4fCopy full SHA for d08cf4f
build.gradle
@@ -161,18 +161,18 @@ if (project.hasProperty('release')) {
161
apply plugin: 'signing'
162
apply plugin: 'maven'
163
164
- task javadocJar(type: Jar) {
+ task deployingJavadocJar(type: Jar) {
165
classifier = 'javadoc'
166
from javadoc
167
}
168
169
- task sourcesJar(type: Jar) {
+ task deployingSourcesJar(type: Jar) {
170
classifier = 'sources'
171
from sourceSets.main.allSource
172
173
174
artifacts {
175
- archives javadocJar, sourcesJar
+ archives deployingJavadocJar, deployingSourcesJar
176
177
178
// Signature of artifacts
0 commit comments