File tree Expand file tree Collapse file tree 5 files changed +24
-15
lines changed Expand file tree Collapse file tree 5 files changed +24
-15
lines changed Original file line number Diff line number Diff line change @@ -63,3 +63,5 @@ fastlane/readme.md
6363# NDK
6464.externalNativeBuild
6565.cxx
66+
67+ release /*
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change @@ -19,3 +19,20 @@ android.useAndroidX=true
1919android.enableJetifier =true
2020# Kotlin code style for this project: "official" or "obsolete":
2121kotlin.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
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =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
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
22apply plugin : ' kotlin-android'
3- apply plugin : ' com.novoda.bintray-release '
3+ apply plugin : " com.vanniktech.maven.publish "
44
55android {
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- }
You can’t perform that action at this time.
0 commit comments