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 {
2424 google()
2525 jcenter()
2626 }
27- tasks. withType(Javadoc ) {
28- excludes = [' **/*.kt' ]
29- }
3027}
3128
3229task clean (type : Delete ) {
Original file line number Diff line number Diff line change @@ -54,28 +54,3 @@ dependencies {
5454 testImplementation " org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version "
5555 testImplementation " com.squareup.okhttp3:mockwebserver:$okhttp "
5656}
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