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

Commit 7d47ee4

Browse files
committed
update to the latest gradle plugin.
1 parent d77db57 commit 7d47ee4

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

build.gradle

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.11'
18+
gradleVersion = '2.2.1'
1919
}
2020

2121
allprojects {

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ 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.11-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip

gradle_plugins/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
apply plugin: 'groovy'
1818

19+
//noinspection GroovyAssignabilityCheck
1920
dependencies {
2021
compile gradleApi()
2122
compile localGroovy()

gradle_plugins/src/main/groovy/org/ros/gradle_plugins/RosAndroid.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class RosAndroidPlugin implements Plugin<Project> {
1111
void apply(Project project) {
1212
project.apply plugin: "ros"
1313
project.extensions.create("rosandroid", RosAndroidPluginExtension)
14-
project.rosandroid.buildToolsVersion = "19.1.0"
14+
project.rosandroid.buildToolsVersion = "21.1.2"
1515

1616
/**********************************************************************
1717
* Publishing - not we're using old style here. Upgrade to maven-publish

message_generation/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* the License.
1515
*/
1616

17+
//noinspection GroovyAssignabilityCheck
1718
dependencies {
1819
compile 'io.netty:netty:3.5.2.Final'
1920
compile 'com.google.guava:guava:12.0'
@@ -26,4 +27,6 @@ dependencies {
2627
}
2728

2829
apply plugin: "application"
30+
31+
//noinspection GroovyUnusedAssignment
2932
mainClassName = "org.ros.internal.message.GenerateInterfaces"

0 commit comments

Comments
 (0)