Skip to content

Commit b919d50

Browse files
committed
Updates some build scripts
1 parent 6f1b450 commit b919d50

2 files changed

Lines changed: 19 additions & 4 deletions

File tree

Library/build.gradle

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ publish {
55
userOrg = 'mcsong'
66
groupId = 'net.sjava'
77
artifactId = 'appstore'
8-
publishVersion = '1.0.3'
8+
publishVersion = '1.0.5'
99
desc = 'Android AppStore Library'
1010
website = 'https://github.com/mcsong/AppStoreLibrary'
1111
issueTracker = "${website}/issues"
@@ -30,7 +30,7 @@ android {
3030
minSdkVersion 9
3131
targetSdkVersion 24
3232
versionCode 1
33-
versionName "1.0.3"
33+
versionName "1.0.5"
3434
}
3535

3636
buildTypes {
@@ -43,6 +43,21 @@ android {
4343
lintOptions {
4444
abortOnError false
4545
}
46+
47+
48+
allprojects {
49+
tasks.withType(Javadoc).all { enabled = false }
50+
}
51+
52+
if (JavaVersion.current().isJava8Compatible()) {
53+
allprojects {
54+
tasks.withType(Javadoc) {
55+
options.addStringOption('Xdoclint:none', '-quiet')
56+
}
57+
}
58+
}
59+
60+
4661
}
4762

4863
dependencies {

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This library make easy to use AppStore app's features.
2121
Gradle
2222
```groovy
2323
dependencies {
24-
compile 'net.sjava:appstore:1.0.3'
24+
compile 'net.sjava:appstore:1.0.5'
2525
}
2626
```
2727

@@ -30,7 +30,7 @@ Maven
3030
<dependency>
3131
<groupId>net.sjava</groupId>
3232
<artifactId>appstore</artifactId>
33-
<version>1.0.3</version>
33+
<version>1.0.5</version>
3434
</dependency>
3535
```
3636
## Usage

0 commit comments

Comments
 (0)