summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-01-27 21:45:12 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-01-27 21:45:12 -0500
commit3a20b69a4fec4f13e5685f615b3e94d802720743 (patch)
treec97de9078c5ff88de1db826bc16bcfa90f7cd39b
parenta07b8d0a24a2c3c66978d8199604219a0ed8bcc8 (diff)
fiddle with build.xml
-rw-r--r--build.xml10
1 files changed, 8 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 2182d37..ab7b4e8 100644
--- a/build.xml
+++ b/build.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project name="FRC Deployment" default="deploy">
+<project name="frc4272-robot2016" default="deploy">
<!--
The following properties can be defined to override system level
@@ -14,7 +14,7 @@
<!-- <property name="version" value=""/> -->
<!-- By default the system team number is used -->
- <!-- <property name="team-number" value=""/> -->
+ <property name="team-number" value="4272"/>
<!-- By default the target is set to 10.TE.AM.2 -->
<!-- <property name="target" value=""/> -->
@@ -27,4 +27,10 @@
<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>