update gradle-api artifact to version 1.6 this is required to make kotlin gradle plugin compatible with upcoming Gradle 2.0

This commit is contained in:
Nikita Skvortsov
2014-05-04 13:46:21 +04:00
parent 0004948023
commit 573f6b61fd
6 changed files with 11 additions and 11 deletions
@@ -1,7 +1,7 @@
Deploying gradle api to maven Deploying gradle api to maven
* gradlew build * gradlew build
-> build/libs/gradle-api-1.4.jar -> build/libs/gradle-api-1.6.jar
* mvn deploy * mvn deploy
build/libs/gradle-api-1.4.jar -> http://repository.jetbrains.com/utils build/libs/gradle-api-1.6.jar -> http://repository.jetbrains.com/utils
@@ -1,7 +1,7 @@
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'maven' apply plugin: 'maven'
version = '1.4' version = '1.6'
group = 'org.jetbrains.kotlin' group = 'org.jetbrains.kotlin'
@@ -25,5 +25,5 @@ artifacts {
} }
task wrapper(type: Wrapper) { task wrapper(type: Wrapper) {
gradleVersion = '1.4' gradleVersion = '1.6'
} }
@@ -1,6 +1,6 @@
#Thu Feb 21 16:54:17 MSK 2013 #Sun May 04 12:35:04 MSK 2014
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.4-bin.zip distributionUrl=http\://services.gradle.org/distributions/gradle-1.6-bin.zip
@@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
############################################################################## ##############################################################################
## ##
@@ -61,9 +61,9 @@ while [ -h "$PRG" ] ; do
fi fi
done done
SAVED="`pwd`" SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" cd "`dirname \"$PRG\"`/" >&-
APP_HOME="`pwd -P`" APP_HOME="`pwd -P`"
cd "$SAVED" cd "$SAVED" >&-
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
@@ -12,7 +12,7 @@
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
<artifactId>gradle-api</artifactId> <artifactId>gradle-api</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<version>1.4</version> <version>1.6</version>
<build> <build>
<plugins> <plugins>
@@ -30,7 +30,7 @@
<configuration> <configuration>
<artifacts> <artifacts>
<artifact> <artifact>
<file>build/libs/gradle-api-1.4.jar</file> <file>build/libs/gradle-api-1.6.jar</file>
<type>jar</type> <type>jar</type>
</artifact> </artifact>
</artifacts> </artifacts>