-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate from jcenter to mavenCentral and release 1.5.2
- Loading branch information
Showing
15 changed files
with
230 additions
and
179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,8 @@ | ||
apply plugin: 'java' | ||
|
||
ext { | ||
bintrayName = 'arouter-annotation' | ||
artifact = bintrayName | ||
libraryName = 'ARouter annotation' | ||
libraryDescription = 'The annotation used in arouter api' | ||
libraryVersion = arouter_annotation_version | ||
java { | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
} | ||
|
||
compileJava { | ||
sourceCompatibility = '1.8' | ||
targetCompatibility = '1.8' | ||
} | ||
|
||
apply from: '../install.gradle' | ||
apply from: '../bintray.gradle' | ||
apply from: rootProject.file('gradle/publish.gradle') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
POM_NAME=ARouter Annotations | ||
POM_ARTIFACT_ID=arouter-annotation | ||
POM_PACKAGING=jar | ||
POM_DESCRIPTION=The annotation used in arouter api | ||
VERSION_NAME=1.0.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
POM_NAME=ARouter SDK | ||
POM_ARTIFACT_ID=arouter-api | ||
POM_PACKAGING=aar | ||
POM_DESCRIPTION=Route framework for android | ||
VERSION_NAME=1.5.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
POM_NAME=ARouter Compiler | ||
POM_ARTIFACT_ID=arouter-compiler | ||
POM_PACKAGING=jar | ||
POM_DESCRIPTION=Compiler for ARouter to find route | ||
VERSION_NAME=1.5.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
POM_NAME=ARouter Register | ||
POM_ARTIFACT_ID=arouter-register | ||
POM_PACKAGING=jar | ||
POM_DESCRIPTION=Gradle plugin used for arouter route map register | ||
VERSION_NAME=1.0.2 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,21 +24,20 @@ SUPPORT_LIB_VERSION=28.0.0 | |
MIN_SDK_VERSION=14 | ||
TARGET_SDK_VERSION=28 | ||
|
||
arouter_main_version=1.5.2 | ||
arouter_annotation_version=1.0.6 | ||
arouter_register_version=1.0.2 | ||
arouter_idea_plugin_version=1.0.0 | ||
support_idea_version=2016.2.5 | ||
arouter_idea_plugin_name=ARouter Road Sign | ||
GROUP=com.alibaba | ||
|
||
POM_URL=https://github.com/Alibaba/ARouter/ | ||
POM_SCM_URL=https://github.com/Alibaba/ARouter/ | ||
POM_SCM_CONNECTION=scm:git:git://github.com/Alibaba/ARouter.git | ||
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/Alibaba/ARouter.git | ||
|
||
bintrayRepo=maven | ||
publishedGroupId=com.alibaba | ||
siteUrl=https://github.com/Alibaba/ARouter | ||
gitUrl=https://github.com/Alibaba/ARouter.git | ||
developerId=zhi1ong | ||
developerName=zhilong.liu | ||
developerEmail=[email protected] | ||
POM_LICENCE_NAME=The Apache Software License, Version 2.0 | ||
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt | ||
POM_LICENCE_DIST=repo | ||
|
||
licenseName=The Apache Software License, Version 2.0 | ||
licenseUrl=http://www.apache.org/licenses/LICENSE-2.0.txt | ||
allLicenses=["Apache-2.0"] | ||
POM_DEVELOPER_ID=zhi1ong | ||
POM_DEVELOPER_NAME=ZhiLong Liu | ||
|
||
arouter_idea_plugin_version=1.0.0 | ||
support_idea_version=2016.2.5 | ||
arouter_idea_plugin_name=ARouter Road Sign |
Oops, something went wrong.