Skip to content

Commit 88e10d0

Browse files
author
mrzhang
committed
update to 1.0.0
1 parent c654f36 commit 88e10d0

9 files changed

Lines changed: 10 additions & 12 deletions

File tree

build-gradle/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ext {
55
artifact = bintrayName
66
libraryName = 'component build'
77
libraryDescription = 'gradle plugin for buid component'
8-
libraryVersion = "0.0.1"
8+
libraryVersion = "1.0.0"
99
licenseName = 'The Apache Software License, Version 2.0'
1010
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
1111
allLicenses = ["Apache-2.0"]

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ buildscript {
77
}
88
dependencies {
99
classpath 'com.android.tools.build:gradle:2.3.3'
10-
// classpath 'com.luojilab.andcomponent:build-gradle:0.0.1'
11-
classpath 'com.luojilab.ddcomponent:build-gradle:0.0.1'
10+
classpath 'com.luojilab.ddcomponent:build-gradle:1.0.0'
1211
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
1312
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
1413
}

componentlib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ext {
99
artifact = bintrayName
1010
libraryName = 'component build lib '
1111
libraryDescription = 'component build lib '
12-
libraryVersion = "0.0.2"
12+
libraryVersion = "1.0.0"
1313
licenseName = 'The Apache Software License, Version 2.0'
1414
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
1515
allLicenses = ["Apache-2.0"]

componentservice/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ android {
2222
}
2323

2424
dependencies {
25-
compile project(':componentlib')
25+
// compile project(':componentlib')
26+
compile 'com.luojilab.ddcomponent:componentlib:1.0.0'
2627
compile project(':basicres')
2728
compile fileTree(include: ['*.jar'], dir: 'libs')
2829
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {

readercomponent/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ android {
3838
dependencies {
3939
compile project(':componentservice')
4040
compile fileTree(include: ['*.jar'], dir: 'libs')
41-
annotationProcessor project(':router-anno-compiler')
41+
annotationProcessor 'com.luojilab.ddcomponent:router-anno-compiler:1.0.0'
4242
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
4343
exclude group: 'com.android.support', module: 'support-annotations'
4444
})

readercomponent/src/main/java/com/luojilab/reader/ReaderFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ private void goToShareActivityWithUri() {
7777
final String URI_LEGAL = "DDComp://share/shareMagazine?bookName=NYTIME&author=";
7878

7979
//参数非法的uri字符串 bookName是必须参数,并在注解中配置了错误外显策略。
80-
final String URI_ILLEGAL = "DDComp://share/shareMagazine?bookNameeee=NYTIME&author=";
80+
// final String URI_ILLEGAL = "DDComp://share/shareMagazine?bookNameeee=NYTIME&author=";
8181

8282
/* TODO: 2017/12/21 change the secondary param to see difference between
8383
legal and illegal data delivering*/

router-anno-compiler/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ext {
66
artifact = bintrayName
77
libraryName = 'router-anno-compiler'
88
libraryDescription = 'router-anno-compiler'
9-
libraryVersion = "0.0.2"
9+
libraryVersion = "1.0.0"
1010
licenseName = 'The Apache Software License, Version 2.0'
1111
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
1212
allLicenses = ["Apache-2.0"]
@@ -23,8 +23,6 @@ dependencies {
2323
compile 'org.apache.commons:commons-lang3:3.4'
2424
compile 'org.apache.commons:commons-collections4:4.1'
2525

26-
// compile 'com.luojilab.ddcomponent:router-annotation:0.0.1'
27-
2826
compile project(':router-annotation')
2927

3028
}

router-annotation/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ext {
55
artifact = bintrayName
66
libraryName = 'router-annotation '
77
libraryDescription = 'router-annotation '
8-
libraryVersion = "0.0.2"
8+
libraryVersion = "1.0.0"
99
licenseName = 'The Apache Software License, Version 2.0'
1010
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
1111
allLicenses = ["Apache-2.0"]

sharecomponent/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ android {
3636

3737
dependencies {
3838
compile project(':componentservice')
39-
annotationProcessor project(':router-anno-compiler')
39+
annotationProcessor 'com.luojilab.ddcomponent:router-anno-compiler:1.0.0'
4040
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
4141
exclude group: 'com.android.support', module: 'support-annotations'
4242
})

0 commit comments

Comments
 (0)