Skip to content

Commit 7f7e6a1

Browse files
committed
update to v2.1.0
1 parent 30b4fe2 commit 7f7e6a1

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ An Android framework library and demo to help you building your app quickly.
1919

2020
```gradle
2121
dependencies {
22-
compile 'cn.ieclipse.af:af-library:2.0.2'
22+
compile 'cn.ieclipse.af:af-library:2.1.0'
2323
}
2424
android {
2525
// for target api >= 23 (Android 6.0)

library/android-maven.gradle

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
// }
66
//}
77

8+
group = project.property('ART_GROUP')
9+
version = project.property('ART_VER')
810
project.ext {
911
name = project.property('ART_ARTIFACT')
10-
group = project.property('ART_GROUP')
11-
version = project.property('ART_VER')
1212
artifactId = project.property('ART_ARTIFACT')
1313
archivesBaseName = project.property('ART_ARTIFACT')
1414
}
@@ -69,12 +69,13 @@ task findConventions << {
6969
}
7070

7171
install {
72-
println(artifactId)
7372
repositories.mavenInstaller {
7473
// This generates POM.xml with proper parameters
7574
pom {
7675
project {
77-
// artifactId project.property('ART_ARTIFACT')
76+
groupId project.property('ART_GROUP')
77+
artifactId project.property('ART_ARTIFACT')
78+
version project.property('ART_VER')
7879
packaging ART_PKG
7980
// Add your description here
8081
name project.property('PRJ_NAME')
@@ -102,10 +103,10 @@ install {
102103
}
103104
}
104105
}
105-
// repositories.mavenDeployer() {
106-
// repository(url: ART_LOCAL_URL)
107-
// pom.groupId = ART_GROUP
108-
// pom.artifactId = ART_ARTIFACT
109-
// pom.version = ART_VER
110-
// }
106+
repositories.mavenDeployer() {
107+
repository(url: ART_LOCAL_URL)
108+
pom.groupId = ART_GROUP
109+
pom.artifactId = ART_ARTIFACT
110+
pom.version = ART_VER
111+
}
111112
}

library/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ systemProp.socksProxyHost=127.0.0.1
88
systemProp.socksProxyPort=1080
99

1010
# artifact
11-
ART_VER=2.0.2
11+
ART_VER=2.1.0
1212
ART_GROUP=cn.ieclipse.af
1313
ART_ARTIFACT=af-library
1414
ART_PKG=aar
@@ -29,7 +29,7 @@ LIC_DESC=
2929
SCM_URL=https://github.com/Jamling/QuickAF
3030
SCM_REPO=https://github.com/Jamling/QuickAF.git
3131
SCM_DEV=git@github.com:Jamling/QuickAF.git
32-
SCM_TAG=v2.0.2
32+
SCM_TAG=v2.1.0
3333

3434
# MAVEN DEV
3535
DEV_NAME=QuickAF Project

0 commit comments

Comments
 (0)