Files
allwpilib/wpilibc/simulation.gradle
Fredric Silberberg d0c01ac30d Updates wpilib to use different repos for the different build versions, instead of using classifiers
Change-Id: Ic4cd1f1f93ae1036834cdcf1d0f1499fc946a429
2015-12-06 16:38:57 -05:00

24 lines
606 B
Groovy

publishing {
publications {
wpilibcSim(MavenPublication) {
artifact wpilibcSimZip
groupId 'edu.wpi.first.wpilibc.simulation'
artifactId 'WPILibCSim'
version '0.1.0'
}
}
}
task wpilibcSimZip(type: Zip) {
description 'Creates the include zip file for wpilibc'
group 'WPILib'
baseName 'WPILibCSim'
destinationDir = project.buildDir
into 'sim/include'
from "${simulation}/include"
from "${shared}/include"
from '../build/simulation/gz_msgs/generated'
from netTablesInclude
from '../hal/include'
}