Skip to content

Commit 434036d

Browse files
authored
Merge pull request #59 from cats-oss/maven-central
Release 1.0.0
2 parents c58b89e + 5373b71 commit 434036d

File tree

5 files changed

+24
-15
lines changed

5 files changed

+24
-15
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,5 @@ fastlane/readme.md
6363
# NDK
6464
.externalNativeBuild
6565
.cxx
66+
67+
release/*

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ buildscript {
1818
jcenter()
1919
}
2020
dependencies {
21-
classpath 'com.android.tools.build:gradle:3.5.3'
21+
classpath 'com.android.tools.build:gradle:4.1.2'
2222
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
23-
classpath 'com.novoda:bintray-release:0.9.2'
23+
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.14.2'
24+
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:1.4.20'
2425
// NOTE: Do not place your application dependencies here; they belong
2526
// in the individual module build.gradle files
2627
}

gradle.properties

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,20 @@ android.useAndroidX=true
1919
android.enableJetifier=true
2020
# Kotlin code style for this project: "official" or "obsolete":
2121
kotlin.code.style=official
22+
23+
GROUP=jp.co.cyberagent.android
24+
POM_ARTIFACT_ID=tab-animation
25+
VERSION_NAME=1.0.0
26+
27+
POM_NAME=android-tab-animation
28+
POM_DESCRIPTION=Easily create TabLayout.Tab animations that sync with the scrolling progress of ViewPager.
29+
POM_INCEPTION_YEAR=2021
30+
31+
POM_URL=https://github.com/cats-oss/android-tab-animation/
32+
POM_SCM_URL=https://github.com/cats-oss/android-tab-animation/
33+
POM_SCM_CONNECTION=scm:git:git://github.com/cats-oss/android-tab-animation.git
34+
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/cats-oss/android-tab-animation.git
35+
36+
POM_LICENCE_NAME=The Apache Software License, Version 2.0
37+
POM_LICENCE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt
38+
POM_LICENCE_DIST=repo

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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-5.4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.2-bin.zip

lib/build.gradle

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apply plugin: 'com.android.library'
22
apply plugin: 'kotlin-android'
3-
apply plugin: 'com.novoda.bintray-release'
3+
apply plugin: "com.vanniktech.maven.publish"
44

55
android {
66
compileSdkVersion compile_sdk_version
@@ -34,14 +34,3 @@ dependencies {
3434
androidTestImplementation 'androidx.test:runner:1.2.0'
3535
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
3636
}
37-
38-
publish {
39-
bintrayUser = project.hasProperty('bintrayUser') ? bintrayUser : ''
40-
bintrayKey = project.hasProperty('bintrayKey') ? bintrayKey : ''
41-
userOrg = 'cats-oss'
42-
groupId = 'jp.co.cyberagent.android'
43-
artifactId = 'tab-animation'
44-
publishVersion = version_name
45-
desc = 'Easily create TabLayout.Tab animations that sync with the scrolling progress of ViewPager'
46-
website = 'https://github.com/cats-oss/android-tab-animation'
47-
}

0 commit comments

Comments
 (0)