mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
* 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.
19 lines
366 B
Groovy
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'
|
|
}
|