Files
allwpilib/simulation/JavaGazebo/build.gradle
Tyler Veness 62812faf62 Clean up include guards and EOF newlines (#65)
* Replaced include guards with #pragma once

* All source files now have exactly one newline appended

Some files had either two newlines at the end or none (which isn't POSIX compliant). This patch fixes that.
2016-05-25 22:40:15 -07:00

19 lines
366 B
Groovy

apply plugin: 'java'
apply plugin: 'maven-publish'
publishing {
publications {
maven(MavenPublication) {
artifact jar
groupId 'org.gazebosim'
artifactId 'JavaGazebo'
version '0.1.0-SNAPSHOT'
}
}
setupWpilibRepo(it)
}
dependencies {
compile 'com.google.protobuf:protobuf-java:2.5.0'
}