Skip to content

Commit

Permalink
Merge pull request chrisbanes#36 from SebastianEngel/master
Browse files Browse the repository at this point in the history
Fixing androidJavadocs and androidSourcesJar tasks
  • Loading branch information
chrisbanes committed Aug 6, 2014
2 parents fcbd1cf + 615d61a commit 3b983a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gradle-mvn-push.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ afterEvaluate { project ->
}

task androidJavadocs(type: Javadoc) {
source = android.sourceSets.main.allJava
source = android.sourceSets.main.java
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
}

Expand All @@ -104,7 +104,7 @@ afterEvaluate { project ->

task androidSourcesJar(type: Jar) {
classifier = 'sources'
from android.sourceSets.main.allSource
from android.sourceSets.main.java.sourceFiles
}

artifacts {
Expand Down

0 comments on commit 3b983a5

Please sign in to comment.