Skip to content

Commit

Permalink
文字贴纸
Browse files Browse the repository at this point in the history
  • Loading branch information
HuanTanSheng committed Dec 15, 2017
1 parent 6d357e7 commit eeeee7a
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions easyPhotos/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,20 @@ task sourcesJar(type: Jar) {
}

//制作文档
task javadoc(type: Javadoc) {
failOnError false
source = android.sourceSets.main.java.sourceFiles
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
classpath += configurations.compile
}
//task javadoc(type: Javadoc) {
// failOnError false
// source = android.sourceSets.main.java.sourceFiles
// classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
// classpath += configurations.compile
//}

// 打包文档
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
//task javadocJar(type: Jar, dependsOn: javadoc) {
// classifier = 'javadoc'
// from javadoc.destinationDir
//}

artifacts {
archives sourcesJar
archives javadocJar
// archives javadocJar
}

0 comments on commit eeeee7a

Please sign in to comment.