15
15
*/
16
16
17
17
task wrapper (type : Wrapper ) {
18
- gradleVersion = ' 2.2 .1'
18
+ gradleVersion = ' 2.14 .1'
19
19
}
20
20
21
21
repositories {
@@ -24,11 +24,12 @@ repositories {
24
24
}
25
25
26
26
buildscript {
27
- apply from : " https://github.com/rosjava /rosjava_bootstrap/raw/indigo /buildscript.gradle"
27
+ apply from : " https://github.com/CentralLabFacilities /rosjava_bootstrap/raw/kinetic /buildscript.gradle"
28
28
}
29
29
30
30
apply plugin : ' catkin'
31
31
apply plugin : ' java'
32
+ apply plugin : " ros-java"
32
33
33
34
allprojects {
34
35
/*
@@ -39,26 +40,17 @@ allprojects {
39
40
version = project. catkin. pkg. version
40
41
}
41
42
42
- subprojects {
43
- /*
44
- * The ros plugin configures a few things:
45
- *
46
- * - local deployment repository : where it dumps the jars and packaged artifacts)
47
- * - local maven repositories : where it finds your locally installed/built artifacts)
48
- * - external maven repositories : where it goes looking if it can't find dependencies locally
49
- *
50
- * To modify, or add repos to the default external maven repositories list, pull request against this code:
51
- *
52
- * https://github.com/rosjava/rosjava_bootstrap/blob/indigo/gradle_plugins/src/main/groovy/org/ros/gradle_plugins/RosPlugin.groovy#L31
53
- */
43
+ dependencies {
44
+ /* An external maven artifact dependency */
54
45
55
- apply plugin : " ros-java"
46
+ compile ' org.ros.rosjava_core:rosjava:[0.2,0.3)'
47
+ compile ' org.apache.directory.studio:org.apache.commons.logging:[1.1,1.2)'
48
+ testCompile ' junit:junit:4.12'
56
49
57
- /*
58
- * Some IDE support if you use it.
59
- */
60
- /* apply plugin: "eclipse" */
61
- /* apply plugin: "idea" */
50
+ /* Example of a local subproject dependency */
51
+ /* compile project(':sibling_gradle_project') */
52
+
53
+ compile ' org.ros.rosjava_messages:actionlib_tutorials:[0.1,)'
62
54
}
63
55
64
56
/*
0 commit comments