Skip to content

Commit cefd4cf

Browse files
committed
upgrade gradle; tests passed
1 parent 3bff699 commit cefd4cf

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.classpath
2+
.DS_Store
23
.gradle
34
.idea
45
.project

build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
apply from: "gradle/setup.gradle"
12
apply from: "gradle/vertx.gradle"
23

34
/*

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pullInDeps=false
44
# Set to true if you want the build to output a jar as well as a module zip file
55
produceJar=false
66

7-
gradleVersion=1.4
7+
gradleVersion=1.5
88
vertxVersion=2.0.0-SNAPSHOT
99
toolsVersion=1.0.0-SNAPSHOT
1010
junitVersion=4.10

gradle/wrapper/gradle-wrapper.jar

7 Bytes
Binary file not shown.
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Jan 28 08:12:12 GMT 2013
1+
#Wed Apr 03 22:25:15 BST 2013
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=http\://services.gradle.org/distributions/gradle-1.4-bin.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-1.5-bin.zip

gradlew

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
##############################################################################
44
##
@@ -61,9 +61,9 @@ while [ -h "$PRG" ] ; do
6161
fi
6262
done
6363
SAVED="`pwd`"
64-
cd "`dirname \"$PRG\"`/"
64+
cd "`dirname \"$PRG\"`/" >&-
6565
APP_HOME="`pwd -P`"
66-
cd "$SAVED"
66+
cd "$SAVED" >&-
6767

6868
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
6969

@@ -101,7 +101,7 @@ if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
101101
warn "Could not set maximum file descriptor limit: $MAX_FD"
102102
fi
103103
else
104-
warn "Could not query businessSystem maximum file descriptor limit: $MAX_FD_LIMIT"
104+
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
105105
fi
106106
fi
107107

@@ -161,4 +161,4 @@ function splitJvmOpts() {
161161
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
162162
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
163163

164-
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain --daemon "$@"
164+
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"

0 commit comments

Comments
 (0)