Skip to content
This repository has been archived by the owner on Jun 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #7 from damonkohler/work
Browse files Browse the repository at this point in the history
Switch to new buildscript block.
  • Loading branch information
SirVer committed Feb 19, 2014
2 parents e228706 + fc43315 commit 4531c8d
Showing 1 changed file with 6 additions and 21 deletions.
27 changes: 6 additions & 21 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,35 +15,20 @@
*/

task wrapper(type: Wrapper) {
gradleVersion = '1.8'
gradleVersion = "1.10"
}

buildscript {
def rosMavenPath = "$System.env.ROS_MAVEN_PATH".split(':').collect { 'file://' + it }
def rosMavenRepository = "$System.env.ROS_MAVEN_REPOSITORY"
repositories {
rosMavenPath.each { p ->
maven {
url p
}
}
mavenLocal()
maven {
url rosMavenRepository
}
}
dependencies {
classpath group: 'org.ros.rosjava_bootstrap', name: 'gradle_plugins', version: '[0.2,0.3)'
}
apply from: "https://github.com/rosjava/android_core/raw/master/buildscript.gradle"
}

apply plugin: 'catkin'
apply plugin: "catkin"

allprojects {
group 'com.github.rosjava.android_extras'
version = project.catkin.pkg.version
group "com.github.rosjava.android_extras"
version = project.catkin.pkg.version
}

subprojects {
apply plugin: 'ros-android'
apply plugin: "ros-android"
}

0 comments on commit 4531c8d

Please sign in to comment.