Skip to content

Commit cfb3e0e

Browse files
committed
[Feature] Update dependencies.
1 parent 198777a commit cfb3e0e

8 files changed

Lines changed: 23 additions & 111 deletions

File tree

bintray-android.gradle

Lines changed: 0 additions & 74 deletions
This file was deleted.

build.gradle

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
buildscript {
22
repositories {
33
google()
4-
jcenter()
4+
mavenCentral()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:4.1.0'
8-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.+'
7+
classpath 'com.android.tools.build:gradle:4.2.1'
8+
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.15.1'
99
}
1010
}
1111

1212
allprojects {
13-
group GROUP
14-
version VERSION
1513
repositories {
1614
google()
17-
jcenter()
15+
mavenCentral()
1816
}
1917
}
2018

gradle.properties

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,18 @@ android.enableJetifier=true
1616
android.useAndroidX=true
1717

1818
GROUP=me.zhanghai.android.fastscroll
19-
VERSION=1.1.5
19+
VERSION_NAME=1.1.5
2020
VERSION_CODE=11
2121

2222
POM_DESCRIPTION=Fast scroll for Android RecyclerView and more
23-
POM_URL=https://github.com/zhanghai/AndroidFastScroll
23+
POM_INCEPTION_YEAR=2019
2424
POM_LICENCE_NAME=The Apache Software License, Version 2.0
2525
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
26+
POM_LICENCE_DIST=repo
2627
POM_DEVELOPER_ID=zhanghai
2728
POM_DEVELOPER_NAME=Hai Zhang
28-
POM_DEVELOPER_EMAIL=zhanghai@google.com
29+
POM_DEVELOPER_URL=https://github.com/zhanghai
2930
POM_SCM_CONNECTION=scm:git@github.com:zhanghai/AndroidFastScroll.git
30-
POM_SCM_DEVELOPER_CONNECTION=scm:git@github.com:zhanghai/AndroidFastScroll.git
31+
POM_SCM_DEV_CONNECTION=scm:git@github.com:zhanghai/AndroidFastScroll.git
3132
POM_SCM_URL=https://github.com/zhanghai/AndroidFastScroll
32-
33-
BINTRAY_USER=zhanghai
34-
BINTRAY_REPO=AndroidFastScroll
35-
BINTRAY_ISSUE_TRACKER_URL=https://github.com/zhanghai/AndroidFastScroll/issues
36-
BINTRAY_VCS_URL=https://github.com/zhanghai/AndroidFastScroll
37-
BINTRAY_GITHUB_REPO=zhanghai/AndroidFastScroll
38-
BINTRAY_LICENSE=Apache-2.0
33+
POM_URL=https://github.com/zhanghai/AndroidFastScroll

gradle/wrapper/gradle-wrapper.jar

379 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Nov 03 22:35:50 PST 2020
1+
#Mon Nov 02 23:27:57 PST 2020
22
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-6.5-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip

library/build.gradle

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ apply plugin: 'com.android.library'
22

33
android {
44
compileSdkVersion 30
5-
buildToolsVersion '30.0.2'
5+
buildToolsVersion '30.0.3'
66
defaultConfig {
77
minSdkVersion 21
88
targetSdkVersion 30
99
versionCode Integer.parseInt(VERSION_CODE)
10-
versionName VERSION
10+
versionName VERSION_NAME
1111
consumerProguardFiles 'proguard-rules.pro'
1212
}
1313
compileOptions {
@@ -22,16 +22,8 @@ android {
2222
}
2323

2424
dependencies {
25-
implementation 'androidx.appcompat:appcompat:1.2.0'
26-
implementation 'androidx.recyclerview:recyclerview:1.1.0'
25+
implementation 'androidx.appcompat:appcompat:1.3.0'
26+
implementation 'androidx.recyclerview:recyclerview:1.2.1'
2727
}
2828

29-
buildscript {
30-
repositories {
31-
jcenter()
32-
}
33-
dependencies {
34-
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
35-
}
36-
}
37-
apply from: '../bintray-android.gradle'
29+
apply plugin: 'com.vanniktech.maven.publish'

library/gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
POM_NAME=AndroidFastScroll Library

sample/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 30
5-
buildToolsVersion '30.0.2'
5+
buildToolsVersion '30.0.3'
66
defaultConfig {
77
applicationId 'me.zhanghai.android.fastscroll.sample'
88
minSdkVersion 21
99
targetSdkVersion 30
1010
versionCode Integer.parseInt(VERSION_CODE)
11-
versionName VERSION
11+
versionName VERSION_NAME
1212
}
1313
compileOptions {
1414
sourceCompatibility JavaVersion.VERSION_1_8
@@ -33,9 +33,9 @@ android {
3333
}
3434

3535
dependencies {
36-
implementation 'androidx.appcompat:appcompat:1.2.0'
37-
implementation 'androidx.recyclerview:recyclerview:1.1.0'
38-
implementation 'com.google.android.material:material:1.2.1'
36+
implementation 'androidx.appcompat:appcompat:1.3.0'
37+
implementation 'androidx.recyclerview:recyclerview:1.2.1'
38+
implementation 'com.google.android.material:material:1.3.0'
3939
implementation 'com.jakewharton:butterknife:10.2.3'
4040
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.3'
4141
implementation project(':library')

0 commit comments

Comments
 (0)