File tree Expand file tree Collapse file tree 2 files changed +0
-28
lines changed Expand file tree Collapse file tree 2 files changed +0
-28
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,6 @@ allprojects {
24
24
google()
25
25
jcenter()
26
26
}
27
- tasks. withType(Javadoc ) {
28
- excludes = [' **/*.kt' ]
29
- }
30
27
}
31
28
32
29
task clean (type : Delete ) {
Original file line number Diff line number Diff line change @@ -54,28 +54,3 @@ dependencies {
54
54
testImplementation " org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version "
55
55
testImplementation " com.squareup.okhttp3:mockwebserver:$okhttp "
56
56
}
57
-
58
- task sourcesJar (type : Jar ) {
59
- classifier = ' sources'
60
- from android. sourceSets. main. java. sourceFiles
61
- }
62
-
63
- task javadoc (type : Javadoc ) {
64
- source = android. sourceSets. main. java. sourceFiles
65
- classpath + = project. files(android. getBootClasspath(). join(File . pathSeparator))
66
- }
67
-
68
- task javadocJar (type : Jar , dependsOn : javadoc) {
69
- classifier = ' javadoc'
70
- from javadoc. destinationDir
71
- }
72
-
73
- task classesJar (type : Jar ) {
74
- from " $buildDir /intermediates/classes/release"
75
- }
76
-
77
- artifacts {
78
- archives classesJar
79
- archives javadocJar
80
- archives sourcesJar
81
- }
You can’t perform that action at this time.
0 commit comments