Skip to content

Commit

Permalink
update push gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank-Zhu committed Sep 25, 2015
1 parent 138279c commit c566ef9
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 15 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ local.properties
# Proguard folder generated by Eclipse
proguard/
/PullToZoomView/.idea
*.iml
10 changes: 5 additions & 5 deletions PullToZoomView/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 20
compileSdkVersion 23
buildToolsVersion "20.0.0"

defaultConfig {
applicationId "com.ecloud.pulltozoomview.demo"
minSdkVersion 11
targetSdkVersion 20
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
Expand All @@ -21,7 +21,7 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:20.0.0'
compile 'com.android.support:recyclerview-v7:22.0.+'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'
compile project(':library')
}
6 changes: 3 additions & 3 deletions PullToZoomView/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
# org.gradle.parallel=true

VERSION_NAME=1.0.0
VERSION_CODE=1
GROUP=com.ecloud
VERSION_CODE=100
GROUP=github.com.Frank-Zhu

POM_DESCRIPTION=An Android custom ListView and ScrollView with pull to zoom-in.
POM_URL=https://github.com/Frank-Zhu/PullZoomView/tree/master/PullToZoomView
Expand All @@ -29,5 +29,5 @@ POM_SCM_DEV_CONNECTION=scm:https://github.com/Frank-Zhu/PullZoomView.git
POM_LICENCE_NAME=apache
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=frank
POM_DEVELOPER_ID=Frank-Zhu
POM_DEVELOPER_NAME=Frank Zhu
12 changes: 6 additions & 6 deletions PullToZoomView/library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.library'
apply plugin: 'maven'

android {
compileSdkVersion 19
compileSdkVersion 23
buildToolsVersion "20.0.0"

defaultConfig {
minSdkVersion 11
targetSdkVersion 19
versionCode 1
versionName "1.0"
minSdkVersion 14
targetSdkVersion 23
versionCode 100
versionName "1.0.0"
}
buildTypes {
release {
Expand All @@ -21,7 +21,7 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:20.0.0'
compile 'com.android.support:appcompat-v7:23.0.1'
}

apply from: './gradle-mvn-push.gradle'
2 changes: 1 addition & 1 deletion PullToZoomView/library/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
# org.gradle.parallel=true

POM_NAME=PullToZoomView Library
POM_ARTIFACT_ID=pull-to-zoom-view
POM_ARTIFACT_ID=pullzoomview
POM_PACKAGING=aar

0 comments on commit c566ef9

Please sign in to comment.