2018-04-29 13:29:07 -07:00
|
|
|
pluginManagement {
|
|
|
|
|
repositories {
|
|
|
|
|
mavenLocal()
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-12 17:14:04 -08:00
|
|
|
plugins {
|
|
|
|
|
id "com.gradle.enterprise" version "3.0"
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-11 21:48:32 -07:00
|
|
|
// Set the flag to tell gradle to ignore unresolved headers
|
|
|
|
|
// Libraries like eigen and opencv use macro includes, which
|
|
|
|
|
// Gradle doesn't properly ignore, and completely disables
|
|
|
|
|
// Incremental includes. This flag makes those includes be ignored.
|
|
|
|
|
Properties props = System.getProperties();
|
|
|
|
|
props.setProperty("org.gradle.internal.native.headers.unresolved.dependencies.ignore", "true");
|
|
|
|
|
|
2018-04-29 13:29:07 -07:00
|
|
|
include 'wpiutil'
|
|
|
|
|
include 'ntcore'
|
2017-08-18 21:35:53 -07:00
|
|
|
include 'hal'
|
2018-04-29 13:29:07 -07:00
|
|
|
include 'cscore'
|
2020-08-06 23:57:39 -07:00
|
|
|
include 'wpimath'
|
2017-08-18 21:35:53 -07:00
|
|
|
include 'wpilibc'
|
2017-10-17 21:37:58 -07:00
|
|
|
include 'wpilibcExamples'
|
2018-04-29 13:29:07 -07:00
|
|
|
include 'wpilibcIntegrationTests'
|
2017-10-17 01:30:21 -04:00
|
|
|
include 'wpilibjExamples'
|
2018-04-29 13:29:07 -07:00
|
|
|
include 'wpilibjIntegrationTests'
|
|
|
|
|
include 'wpilibj'
|
2018-06-30 02:45:21 -05:00
|
|
|
include 'simulation:gz_msgs'
|
|
|
|
|
include 'simulation:frc_gazebo_plugins'
|
|
|
|
|
include 'simulation:halsim_gazebo'
|
2018-07-22 17:00:06 -05:00
|
|
|
include 'simulation:halsim_ds_socket'
|
2019-09-23 00:24:10 -07:00
|
|
|
include 'simulation:halsim_gui'
|
2018-04-29 13:29:07 -07:00
|
|
|
include 'cameraserver'
|
2018-12-07 23:57:37 -08:00
|
|
|
include 'cameraserver:multiCameraServer'
|
2019-11-01 21:58:54 -07:00
|
|
|
include 'wpilibOldCommands'
|
|
|
|
|
include 'wpilibNewCommands'
|
2018-05-13 22:00:15 -07:00
|
|
|
include 'myRobot'
|
2018-07-28 17:54:41 -07:00
|
|
|
include 'docs'
|