move instantiation of physical components to map
[ozzloy@gmail.com/3501-spark-go] / build.xml
CommitLineData
b449387d
LH
1<?xml version="1.0" encoding="UTF-8"?>
2
3<project name="FRC Deployment" default="deploy">
4
5 <!--
6 The following properties can be defined to override system level
7 settings. These should not be touched unless you know what you're
8 doing. The primary use is to override the wpilib version when
9 working with older robots that can't compile with the latest
10 libraries.
11 -->
12
13 <!-- By default the system version of WPI is used -->
14 <!-- <property name="version" value=""/> -->
15
16 <!-- By default the system team number is used -->
17 <!-- <property name="team-number" value=""/> -->
18
19 <!-- By default the target is set to 10.TE.AM.2 -->
20 <!-- <property name="target" value=""/> -->
21
22 <!-- Any other property in build.properties can also be overridden. -->
23
24 <property file="${user.home}/wpilib/wpilib.properties"/>
25 <property file="build.properties"/>
26 <property file="${user.home}/wpilib/java/${version}/ant/build.properties"/>
27
28 <import file="${wpilib.ant.dir}/build.xml"/>
29
30</project>