Skip to content
This repository has been archived by the owner on Jan 25, 2021. It is now read-only.

Commit

Permalink
updating the project to gradle 2.4 and using my own copy of the plugi…
Browse files Browse the repository at this point in the history
…ndev to publish it
  • Loading branch information
dcendents committed May 6, 2015
1 parent 13c1418 commit bcd78ce
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 deletions.
16 changes: 13 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@

plugins {
id 'nu.studer.plugindev' version '1.0.3'
buildscript {
repositories {
maven {
url "https://bintray.com/artifact/download/dcendents/gradle-plugins"
}
jcenter()
}
dependencies {
classpath "com.github.dcendents:gradle-plugindev-plugin:1.0.4.20150505"
}
}

apply plugin: "nu.studer.plugindev"

repositories {
mavenCentral()
mavenLocal()
Expand Down Expand Up @@ -57,6 +67,6 @@ bintray {
test.dependsOn jar

task wrapper(type: Wrapper) {
gradleVersion = '2.2'
gradleVersion = '2.4'
distributionUrl = "https://services.gradle.org/distributions/gradle-${gradleVersion}-all.zip"
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
group=com.github.dcendents
theName=android-maven-plugin
theName=android-maven-gradle-plugin
version=1.3-SNAPSHOT
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Nov 19 14:22:28 CST 2014
#Tue May 05 22:02:08 EDT 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip
6 changes: 3 additions & 3 deletions src/test/resources/projects/simple/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:0.14.4',
fileTree(dir: '../../../../libs', include: ['android-maven-plugin-*.jar'])
classpath 'com.android.tools.build:gradle:1.2.2',
fileTree(dir: '../../../../libs', include: ['android-maven-gradle-plugin-*.jar'])
}
}

Expand All @@ -27,5 +27,5 @@ install {

android {
compileSdkVersion "android-21"
buildToolsVersion "21.1.1"
buildToolsVersion "22.0.1"
}

0 comments on commit bcd78ce

Please sign in to comment.