Skip to content
This repository was archived by the owner on Feb 14, 2020. It is now read-only.

Commit c4cb57c

Browse files
committed
Dependency updates
1 parent 6a18cd1 commit c4cb57c

File tree

7 files changed

+52
-20
lines changed

7 files changed

+52
-20
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ branches:
66
language: android
77

88
jdk:
9-
- oraclejdk8
9+
- openjdk8
1010

1111
before_install:
1212
- pip install --user codecov

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ buildscript {
44
jcenter()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:3.3.2'
8-
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2'
9-
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
7+
classpath "com.android.tools.build:gradle:3.5.2"
8+
classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.3"
9+
classpath "com.github.dcendents:android-maven-gradle-plugin:2.1"
1010
}
1111
}
1212

1313
plugins {
14-
id 'com.github.ben-manes.versions' version '0.21.0'
14+
id "com.github.ben-manes.versions" version "0.27.0"
1515
}
1616

1717
allprojects {

gradle/wrapper/gradle-wrapper.jar

-561 Bytes
Binary file not shown.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
#!/usr/bin/env sh
22

3+
#
4+
# Copyright 2015 the original author or authors.
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#
18+
319
##############################################################################
420
##
521
## Gradle start up script for UN*X
@@ -28,7 +44,7 @@ APP_NAME="Gradle"
2844
APP_BASE_NAME=`basename "$0"`
2945

3046
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31-
DEFAULT_JVM_OPTS=""
47+
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
3248

3349
# Use the maximum available, or set MAX_FD != -1 to use that value.
3450
MAX_FD="maximum"

gradlew.bat

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
@rem
2+
@rem Copyright 2015 the original author or authors.
3+
@rem
4+
@rem Licensed under the Apache License, Version 2.0 (the "License");
5+
@rem you may not use this file except in compliance with the License.
6+
@rem You may obtain a copy of the License at
7+
@rem
8+
@rem http://www.apache.org/licenses/LICENSE-2.0
9+
@rem
10+
@rem Unless required by applicable law or agreed to in writing, software
11+
@rem distributed under the License is distributed on an "AS IS" BASIS,
12+
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
@rem See the License for the specific language governing permissions and
14+
@rem limitations under the License.
15+
@rem
16+
117
@if "%DEBUG%" == "" @echo off
218
@rem ##########################################################################
319
@rem
@@ -14,7 +30,7 @@ set APP_BASE_NAME=%~n0
1430
set APP_HOME=%DIRNAME%
1531

1632
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17-
set DEFAULT_JVM_OPTS=
33+
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
1834

1935
@rem Find java.exe
2036
if defined JAVA_HOME goto findJavaFromJavaHome

library/build.gradle

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
1-
apply plugin: 'com.android.library'
1+
apply plugin: "com.android.library"
22

33
android {
4-
compileSdkVersion 28
4+
compileSdkVersion 29
55

66
defaultConfig {
77
minSdkVersion 14
8-
targetSdkVersion 28
8+
targetSdkVersion 29
99
versionCode 1
1010
versionName "1.0"
1111
}
1212
}
1313

1414
dependencies {
1515

16-
api 'androidx.appcompat:appcompat:1.0.2'
16+
api "androidx.appcompat:appcompat:1.1.0"
1717

18-
api 'oauth.signpost:signpost-core:1.2.1.2'
18+
api "oauth.signpost:signpost-core:1.2.1.2"
1919

20-
api 'se.akerfeldt:okhttp-signpost:1.1.0'
20+
api "se.akerfeldt:okhttp-signpost:1.1.0"
2121

22-
api "com.github.parse-community.Parse-SDK-Android:parse:1.19.0"
22+
api "com.github.parse-community.Parse-SDK-Android:parse:1.22.1"
2323

24-
testImplementation 'junit:junit:4.12'
25-
testImplementation 'org.mockito:mockito-core:1.10.19'
24+
testImplementation "junit:junit:4.12"
25+
testImplementation "org.mockito:mockito-core:1.10.19"
2626
}
2727

2828
//region Code Coverage
2929

30-
apply plugin: 'jacoco'
30+
apply plugin: "jacoco"
3131

3232
jacoco {
3333
toolVersion "0.7.1.201405082137"
@@ -66,10 +66,10 @@ task jacocoTestReport(type: JacocoReport, dependsOn: "testDebugUnitTest") {
6666

6767
//region Coveralls
6868

69-
apply plugin: 'com.github.kt3k.coveralls'
69+
apply plugin: "com.github.kt3k.coveralls"
7070

7171
coveralls.jacocoReportPath = "${buildDir}/reports/jacoco/jacocoTestReport/jacocoTestReport.xml"
7272

7373
//endregion
7474

75-
apply from: 'https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.0.0/gradle-android-javadocs.gradle'
75+
apply from: "https://raw.githubusercontent.com/Commit451/gradle-android-javadocs/1.1.0/gradle-android-javadocs.gradle"

0 commit comments

Comments
 (0)