Skip to content
This repository was archived by the owner on Aug 11, 2023. It is now read-only.

Commit 4bd903c

Browse files
committed
gradle wrapper 1.7
1 parent 10000c8 commit 4bd903c

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

build.gradle

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
* the License.
1515
*/
1616

17+
task wrapper(type: Wrapper) {
18+
gradleVersion = '1.7'
19+
}
20+
1721
buildscript {
1822
def rosMavenPath = "$System.env.ROS_MAVEN_PATH".split(':').collect { 'file://' + it }
1923
repositories {

gradle/wrapper/gradle-wrapper.jar

6.83 KB
Binary file not shown.
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Apr 29 15:11:16 CEST 2013
1+
#Mon Sep 16 09:49:12 KST 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.5-bin.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-1.7-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,13 +101,13 @@ 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

108108
# For Darwin, add options to specify how the application appears in the dock
109109
if $darwin; then
110-
JAVA_OPTS="$JAVA_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
110+
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
111111
fi
112112

113113
# For Cygwin, switch paths to Windows format before running java

0 commit comments

Comments
 (0)