Skip to content

Commit c912074

Browse files
committed
Updated maven push script
1 parent c52502a commit c912074

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

maven_push.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ afterEvaluate { project ->
5959
}
6060

6161
task androidJavadocs(type: Javadoc) {
62-
source = android.sourceSets.main.allJava
62+
source = 'src/main/java'
6363
}
6464

6565
task androidJavadocsJar(type: Jar) {
@@ -71,7 +71,7 @@ afterEvaluate { project ->
7171
task androidSourcesJar(type: Jar) {
7272
classifier = 'sources'
7373
//basename = artifact_id
74-
from android.sourceSets.main.allSource
74+
from 'src/main/java'
7575
}
7676

7777
artifacts {

0 commit comments

Comments
 (0)