We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd7566a commit 98aefffCopy full SHA for 98aefff
build.gradle
@@ -19,7 +19,7 @@ plugins {
19
}
20
21
group 'com.github.shalousun'
22
-version '2.0.0-release'
+version '2.0.1'
23
24
sourceCompatibility = 1.8
25
@@ -31,19 +31,19 @@ repositories {
31
32
dependencies {
33
testCompile group: 'junit', name: 'junit', version: '4.13.1'
34
- compile 'com.github.shalousun:smart-doc:2.0.0'
+ compile 'com.github.shalousun:smart-doc:2.0.1'
35
36
tasks.withType(JavaCompile) {
37
options.encoding = "UTF-8"
38
39
40
task javadocJar(type: Jar) {
41
- archiveClassifier= "javadoc"
+ classifier= "javadoc"
42
from javadoc
43
44
45
task sourcesJar(type: Jar) {
46
- archiveClassifier = 'sources'
+ classifier = 'sources'
47
from sourceSets.main.allSource
48
49
0 commit comments