Skip to content

Commit 9b13a63

Browse files
committed
new message generation api and gradle 1.8->1.9 for templates.
1 parent 413e809 commit 9b13a63

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
This is not installed, but it gets used to generate the gradle wrapper for a project.
22

3-
It is currently the gradle wrapper supporting gradle 1.7.
3+
It is currently the gradle wrapper supporting gradle 1.9.
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Fri Oct 18 13:01:06 CEST 2013
1+
#Thu Dec 26 09:16:38 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.8-bin.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-1.9-bin.zip

src/rosjava_build_tools/templates/android_package/build.gradle.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
task wrapper(type: Wrapper) {
18-
gradleVersion = '1.8'
18+
gradleVersion = '1.9'
1919
}
2020

2121
buildscript {

src/rosjava_build_tools/templates/rosjava_msg_project/build.gradle.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
*/
1616

1717
try {
18-
project.catkin.tree.pkgs['%(project_name)s'].generateUnofficialMessageArtifact(project)
18+
project.catkin.tree.generateMessageArtifact(project, '%(project_name)s')
1919
} catch (NullPointerException e) {
2020
println("Couldn't find %(project_name)s on the ROS_PACKAGE_PATH")
2121
}
22-

src/rosjava_build_tools/templates/rosjava_package/build.gradle.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
task wrapper(type: Wrapper) {
18-
gradleVersion = '1.8'
18+
gradleVersion = '1.9'
1919
}
2020

2121
buildscript {

0 commit comments

Comments
 (0)