Skip to content
This repository was archived by the owner on Jun 28, 2019. It is now read-only.

Commit bb50af8

Browse files
committed
JitpackによるJavaDoc生成取りやめ
1 parent 7463c06 commit bb50af8

File tree

2 files changed

+0
-28
lines changed

2 files changed

+0
-28
lines changed

build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ allprojects {
2424
google()
2525
jcenter()
2626
}
27-
tasks.withType(Javadoc) {
28-
excludes = ['**/*.kt']
29-
}
3027
}
3128

3229
task clean(type: Delete) {

studyplus-android-sdk2/build.gradle

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff 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-
}

0 commit comments

Comments
 (0)