Skip to content
Snippets Groups Projects
Commit 206655a4 authored by Daniel Stonier's avatar Daniel Stonier
Browse files

fixing plugin and rosjava dependencies.

parent 1612d01b
No related branches found
No related tags found
No related merge requests found
...@@ -14,8 +14,22 @@ ...@@ -14,8 +14,22 @@
* the License. * the License.
*/ */
task wrapper(type: Wrapper) { buildscript {
gradleVersion = '1.5' def rosMavenPath = "$System.env.ROS_MAVEN_PATH".split(':').collect { 'file://' + it }
repositories {
rosMavenPath.each { p ->
maven {
url p
}
}
mavenLocal()
maven {
url 'https://github.com/rosjava/rosjava_mvn_repo/raw/master'
}
}
dependencies {
classpath group: 'org.ros.rosjava_bootstrap', name: 'gradle_plugins', version: '0.1.0'
}
} }
allprojects { allprojects {
......
...@@ -15,21 +15,25 @@ ...@@ -15,21 +15,25 @@
*/ */
dependencies { dependencies {
compile project(':rosjava_bootstrap')
compile project(':rosjava_messages')
compile project(':apache_xmlrpc_common') compile project(':apache_xmlrpc_common')
compile project(':apache_xmlrpc_server') compile project(':apache_xmlrpc_server')
compile project(':apache_xmlrpc_client') compile project(':apache_xmlrpc_client')
compile 'org.ros.rosjava_bootstrap:message_generator:0.1.+'
compile 'org.ros.rosjava_messages:rosgraph_msgs:1.9.+'
compile 'org.ros.rosjava_messages:geometry_msgs:1.10.+'
compile 'org.ros.rosjava_messages:nav_msgs:1.10.+'
compile 'org.ros.rosjava_messages:tf2_msgs:0.4.+'
compile 'dnsjava:dnsjava:2.1.1' compile 'dnsjava:dnsjava:2.1.1'
compile 'org.apache.commons:com.springsource.org.apache.commons.logging:1.1.1' compile 'org.apache.commons:com.springsource.org.apache.commons.logging:1.1.1'
compile 'org.apache.commons:com.springsource.org.apache.commons.net:2.0.0' compile 'org.apache.commons:com.springsource.org.apache.commons.net:2.0.0'
compile 'com.google.guava:guava:12.0'
testCompile 'junit:junit:4.8.2' testCompile 'junit:junit:4.8.2'
testCompile 'org.mockito:mockito-all:1.8.5' testCompile 'org.mockito:mockito-all:1.8.5'
} }
jar { jar {
manifest { manifest {
version = '0.0.0-SNAPSHOT' version = project.version
symbolicName = 'org.ros.rosjava' symbolicName = 'org.ros.rosjava'
instruction 'Export-Package', '!org.ros.internal.*, org.ros.*' instruction 'Export-Package', '!org.ros.internal.*, org.ros.*'
instruction 'Private-Package', 'org.ros.internal.*' instruction 'Private-Package', 'org.ros.internal.*'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment