Skip to content

Commit 4454927

Browse files
committed
release reouter-anno-1.0.1;router-anno-compiler-1.0.1;componentlib-1.3.1;
1 parent 56d620f commit 4454927

File tree

10 files changed

+28
-21
lines changed

10 files changed

+28
-21
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ android {
4343
dependencies {
4444
compile project(':componentservice')
4545
compile 'com.android.support.constraint:constraint-layout:1.0.2'
46-
annotationProcessor project(':router-anno-compiler')
47-
// annotationProcessor 'com.github.mqzhangw:JIMU:router-anno-compiler-1.0.1'
46+
// annotationProcessor project(':router-anno-compiler')
47+
annotationProcessor 'com.github.jimu:router-anno-compiler:1.0.1'
4848
}
4949

5050
combuild {

basiclib/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ dependencies {
2929
compile 'com.android.support:appcompat-v7:26.+'
3030
testCompile 'junit:junit:4.12'
3131
compile 'com.squareup.picasso:picasso:2.5.2'
32-
// compile ('com.github.mqzhangw:JIMU:componentlib-1.3.1',{
33-
// exclude group: 'com.android.support', module: 'appcompat-v7'
34-
// })
32+
3533
compile project(":componentlib")
34+
compile 'com.github.jimu:componentlib:1.3.1'
3635
}
3736

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ buildscript {
99
url 'https://maven.google.com/'
1010
name 'Google'
1111
}
12+
maven {
13+
url 'https://dl.bintray.com/leobert-lan-oss/maven/'
14+
}
1215
}
1316
dependencies {
1417
classpath 'com.android.tools.build:gradle:2.3.3'
@@ -23,6 +26,9 @@ allprojects {
2326
repositories {
2427
jcenter()
2528
maven { url 'https://jitpack.io' }
29+
maven {
30+
url 'https://dl.bintray.com/leobert-lan-oss/maven/'
31+
}
2632
maven {
2733
url 'https://maven.google.com/'
2834
name 'Google'

componentlib/build.gradle

Lines changed: 3 additions & 5 deletions
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 = "1.3.0"
12+
libraryVersion = "1.3.1"
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"]
@@ -43,10 +43,8 @@ dependencies {
4343
exclude group: 'com.android.support', module: 'support-annotations'
4444
})
4545
testCompile 'junit:junit:4.12'
46-
compile project(':router-annotation')
47-
// compile('com.github.mqzhangw:JIMU:router-anno-1.0.1@jar', {
48-
// exclude group: 'com.android.support'
49-
// })
46+
// compile project(':router-annotation')
47+
compile 'com.github.jimu:router-annotation:1.0.1'
5048
compile 'com.google.code.gson:gson:2.8.2'
5149

5250
}

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ org.gradle.jvmargs=-Xmx1536m
1212
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1313
# org.gradle.parallel=true
1414
mainmodulename=app
15-
bintrayRepo=compbuild
16-
publishedGroupId=com.luojilab.ddcomponent
17-
siteUrl=https://github.com/luojilab/DDComponentForAndroid
18-
gitUrl=https://github.com/luojilab/DDComponentForAndroid.git
15+
bintrayRepo=maven
16+
publishedGroupId=com.github.jimu
17+
siteUrl=https://github.com/mqzhangw/JIMU
18+
gitUrl=https://github.com/mqzhangw/JIMU.git
1919
developerId=mqzhang
2020
developerName=mqzhang
2121
developerEmail=zhmqq0527@gmail.com

readercomponent/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ android {
3939
dependencies {
4040
compile project(':componentservice')
4141
compile fileTree(include: ['*.jar'], dir: 'libs')
42-
// annotationProcessor 'com.luojilab.ddcomponent:router-anno-compiler:1.0.0'
43-
annotationProcessor project(':router-anno-compiler')
42+
annotationProcessor 'com.github.jimu:router-anno-compiler:1.0.1'
43+
// annotationProcessor project(':router-anno-compiler')
4444
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
4545
exclude group: 'com.android.support', module: 'support-annotations'
4646
})

router-anno-compiler/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ dependencies {
2323
compile 'org.apache.commons:commons-lang3:3.4'
2424
compile 'org.apache.commons:commons-collections4:4.1'
2525

26-
compile project(':router-annotation')
26+
// compile project(':router-annotation')
27+
compile 'com.github.jimu:router-annotation:1.0.1'
2728

2829
}
2930

router-annotation/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
apply plugin: 'java'
22

3+
group="com.github.jimu"
4+
35
ext {
6+
bintrayRepo = 'maven'
47
bintrayName = 'router-annotation'
58
artifact = bintrayName
69
libraryName = 'router-annotation '

sharecomponent/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ android {
3434

3535
dependencies {
3636
compile project(':componentservice')
37-
// annotationProcessor 'com.luojilab.ddcomponent:router-anno-compiler:1.0.0'
38-
annotationProcessor project(':router-anno-compiler')
37+
annotationProcessor 'com.github.jimu:router-anno-compiler:1.0.1'
38+
// annotationProcessor project(':router-anno-compiler')
3939
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
4040
exclude group: 'com.android.support', module: 'support-annotations'
4141
})

sharecomponentkotlin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ android {
3939
dependencies {
4040
compile fileTree(dir: 'libs', include: ['*.jar'])
4141
compile project(':componentservice')
42-
// kapt 'com.luojilab.ddcomponent:router-anno-compiler:1.0.0'
43-
kapt project(':router-anno-compiler')
42+
// kapt project(':router-anno-compiler')
43+
kapt 'com.github.jimu:router-anno-compiler:1.0.1'
4444
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
4545
}
4646

0 commit comments

Comments
 (0)