File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -43,23 +43,6 @@ def getRepositoryPassword() {
43
43
}
44
44
45
45
afterEvaluate { project ->
46
- task androidJavadocs(type : Javadoc ) {
47
- failOnError false
48
- source = android. sourceSets. main. java. source
49
- classpath + = project. files(android. getBootClasspath(). join(File . pathSeparator))
50
- }
51
-
52
- afterEvaluate {
53
- androidJavadocs. classpath + = files(android. libraryVariants. collect { variant ->
54
- variant. javaCompileProvider. get(). classpath. files
55
- })
56
- }
57
-
58
- task androidJavadocsJar(type : Jar , dependsOn : androidJavadocs) {
59
- classifier = ' javadoc'
60
- from androidJavadocs. destinationDir
61
- }
62
-
63
46
task androidSourcesJar(type : Jar ) {
64
47
classifier = ' sources'
65
48
from android. sourceSets. main. java. source
@@ -146,7 +129,6 @@ afterEvaluate { project ->
146
129
if (project. getPlugins(). hasPlugin(' com.android.application' ) ||
147
130
project. getPlugins(). hasPlugin(' com.android.library' )) {
148
131
archives androidSourcesJar
149
- archives androidJavadocsJar
150
132
} else {
151
133
archives sourcesJar
152
134
}
You can’t perform that action at this time.
0 commit comments