File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ android {
8
8
minSdkVersion 19
9
9
targetSdkVersion 29
10
10
versionCode 1
11
- versionName " 1.0.2 "
11
+ versionName " 1.0.3 "
12
12
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
13
13
}
14
14
buildTypes {
@@ -42,19 +42,19 @@ dependencies {
42
42
43
43
task sourcesJar (type : Jar ) {
44
44
from android. sourceSets. main. java. srcDirs
45
- classifier = ' sources'
45
+ archiveClassifier . set ' sources'
46
46
}
47
47
48
48
task javadoc (type : Javadoc ) {
49
- failOnError false
49
+ failOnError false
50
50
source = android. sourceSets. main. java. sourceFiles
51
51
classpath + = project. files(android. getBootClasspath(). join(File . pathSeparator))
52
52
classpath + = configurations. compile
53
53
}
54
54
55
55
// build a jar with javadoc
56
56
task javadocJar (type : Jar , dependsOn : javadoc) {
57
- classifier = ' javadoc'
57
+ archiveClassifier . set ' javadoc'
58
58
from javadoc. destinationDir
59
59
}
60
60
@@ -81,7 +81,7 @@ publishing {
81
81
}
82
82
groupId ' io.dualbit.wordpressclient'
83
83
artifactId ' wordpressclient'
84
- version ' 1.0.2 '
84
+ version ' 1.0.3 '
85
85
pom. withXml {
86
86
def root = asNode()
87
87
root. appendNode(' name' , ' Android WordPress Client' )
You can’t perform that action at this time.
0 commit comments