mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
* Moved version generation to the WPILib versioning plugin. This also moves ntcore and wpilib to the latest available version. * Fixed description string. * Gave full path for ignored files.
19 lines
371 B
Groovy
19 lines
371 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'maven-publish'
|
|
|
|
publishing {
|
|
publications {
|
|
maven(MavenPublication) {
|
|
artifact jar
|
|
groupId 'org.gazebosim'
|
|
artifactId 'JavaGazebo'
|
|
version WPILibVersion.version
|
|
}
|
|
}
|
|
setupWpilibRepo(it)
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.google.protobuf:protobuf-java:2.5.0'
|
|
}
|