summaryrefslogtreecommitdiff
path: root/build.xml
blob: ab7b4e8224b9d722572fd5d314348492b90172a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>

<project name="frc4272-robot2016" default="deploy">

  <!--
  The following properties can be defined to override system level
  settings. These should not be touched unless you know what you're
  doing. The primary use is to override the wpilib version when
  working with older robots that can't compile with the latest
  libraries.
  -->

  <!-- By default the system version of WPI is used -->
  <!-- <property name="version" value=""/> -->

  <!-- By default the system team number is used -->
  <property name="team-number" value="4272"/>

  <!-- By default the target is set to 10.TE.AM.2 -->
  <!-- <property name="target" value=""/> -->

  <!-- Any other property in build.properties can also be overridden. -->
  
  <property file="${user.home}/wpilib/wpilib.properties"/>
  <property file="build.properties"/>
  <property file="${user.home}/wpilib/java/${version}/ant/build.properties"/>
  
  <import file="${wpilib.ant.dir}/build.xml"/>

  <target name="javadoc">
    <javadoc access="public" author="true" classpath="${wpilib.jar}:${networktables.jar}" destdir="doc" nodeprecated="false" nodeprecatedlist="false" noindex="false" nonavbar="false" notree="false" packagenames="org.usfirst.frc.team4272.robot2016,org.usfirst.frc.team4272.robotlib" source="1.8" sourcepath="src" splitindex="true" use="true" version="true">
      <link href="${wpilib}/javadoc/"/>
    </javadoc>
  </target>

</project>