Skip to content

Commit 9221108

Browse files
committed
Update dependencies.
1 parent c726b19 commit 9221108

File tree

7 files changed

+26
-22
lines changed

7 files changed

+26
-22
lines changed

bors.toml

-4
This file was deleted.

build.gradle

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
1-
task wrapper(type: Wrapper) {
2-
gradleVersion '2.3'
3-
}
41

52
buildscript {
63
repositories {
74
jcenter()
85
mavenCentral()
6+
google()
97
maven {
108
url 'https://oss.sonatype.org/content/repositories/snapshots'
119
}
1210
}
1311
dependencies {
14-
classpath 'com.android.tools.build:gradle:2.1.3'
12+
classpath 'com.android.tools.build:gradle:3.4.2'
1513
//classpath "com.jakewharton.sdkmanager:gradle-plugin:0.12.0"
1614
}
1715
}
1816

1917
allprojects {
2018
repositories {
2119
mavenCentral()
20+
google()
2221
}
2322
// Is Release Build?
24-
ext.isReleaseVersion = has("release")
23+
/*ext.isReleaseVersion = has("release")
2524
ext.versionCodeInt = getProperty('VERSION_CODE').toInteger()
2625
version = VERSION_NAME
27-
project.group = GROUP
26+
project.group = GROUP*/
2827

2928
}
3029

decor/build.gradle

+6-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ android {
2727
unitTests.returnDefaultValues = true
2828
}
2929

30+
lintOptions {
31+
abortOnError false
32+
}
33+
3034
}
3135

3236
repositories {
@@ -36,13 +40,13 @@ repositories {
3640

3741
dependencies {
3842
compile fileTree(dir: 'libs', include: ['*.jar'])
39-
compile "com.android.support:appcompat-v7:${project.ANDROID_SUPPORT_VERSION}"
43+
compile "com.android.support:appcompat-v7:28.0.0"
4044

4145
//androidTestCompile 'com.android.support.test:runner:0.2'
4246
//androidTestCompile 'com.android.support.test:rules:0.2'
4347

4448
testCompile 'junit:junit:4.12'
45-
testCompile "org.mockito:mockito-core:1.10.19"
49+
testCompile "org.mockito:mockito-core:3.0.0"
4650
testCompile 'org.easytesting:fest-assert-core:2.0M10'
4751
testCompile 'org.robolectric:robolectric:3.0'
4852
testCompile 'org.apache.maven:maven-ant-tasks:2.1.3'

decorators/build.gradle

+8-3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ android {
1818
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1919
}
2020
}
21+
22+
lintOptions {
23+
abortOnError false
24+
}
25+
2126
}
2227

2328

@@ -28,9 +33,9 @@ repositories {
2833
dependencies {
2934
compile fileTree(dir: 'libs', include: ['*.jar'])
3035
compile project(':decor')
31-
compile "com.android.support:appcompat-v7:${project.ANDROID_SUPPORT_VERSION}"
32-
compile "com.android.support:palette-v7:${project.ANDROID_SUPPORT_VERSION}"
33-
compile "com.android.support:support-v4:${project.ANDROID_SUPPORT_VERSION}@aar"
36+
compile "com.android.support:appcompat-v7:28.0.0"
37+
compile "com.android.support:palette-v7:28.0.0"
38+
compile "com.android.support:support-v4:28.0.0"
3439
}
3540

3641

gradle.properties

+5-5
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ POM_DEVELOPER_ID=chemouna
3434
POM_DEVELOPER_NAME=Mouna Cheikhna
3535
POM_DEVELOPER_EMAIL=[email protected]
3636

37-
ANDROID_BUILD_MIN_SDK_VERSION=8
38-
ANDROID_BUILD_TARGET_SDK_VERSION=23
39-
ANDROID_BUILD_SDK_VERSION=23
40-
ANDROID_BUILD_TOOLS_VERSION=23.0.2
41-
ANDROID_SUPPORT_VERSION=23.1.1
37+
ANDROID_BUILD_MIN_SDK_VERSION=14
38+
ANDROID_BUILD_TARGET_SDK_VERSION=28
39+
ANDROID_BUILD_SDK_VERSION=28
40+
ANDROID_BUILD_TOOLS_VERSION=29.0.0
41+
ANDROID_SUPPORT_VERSION=28.0.0

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.5.1-all.zip

samples/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ dependencies {
2929
/*compile 'com.mounacheikhna:decor:0.2.4'
3030
compile 'com.mounacheikhna:decorators:0.2.4'*/
3131

32-
compile "com.android.support:support-v4:${project.ANDROID_SUPPORT_VERSION}"
32+
compile "com.android.support:support-v4:+"
3333
}

0 commit comments

Comments
 (0)