mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
This does a major cleanup on our gradle files, primarily converting all instances of manual dependency downloading to use the correct configuration-based method, which has the advantage of being both less code and more safe.
14 lines
301 B
Groovy
14 lines
301 B
Groovy
include 'hal',
|
|
'wpilibc',
|
|
'wpilibcIntegrationTests',
|
|
'wpilibj',
|
|
'wpilibjIntegrationTests',
|
|
'myRobot',
|
|
'myRobotCpp'
|
|
|
|
if (hasProperty("makeSim")){
|
|
include 'simulation',
|
|
'simulation:JavaGazebo',
|
|
'simulation:SimDS'
|
|
}
|