mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-25 01:41:43 +00:00
Initial checkin of unified hierarchy of WPILib 2015
This commit is contained in:
59
networktables/java-table-viewer/build.xml
Normal file
59
networktables/java-table-viewer/build.xml
Normal file
@@ -0,0 +1,59 @@
|
||||
<!--
|
||||
Table Viewer Build Script
|
||||
|
||||
Tasks:
|
||||
- compile: Compiles the code.
|
||||
- jar: Makes the runnable jar file.
|
||||
- clean: Cleans up the project.
|
||||
-->
|
||||
|
||||
<project name="Java TableMyProject Viewer" default="jar" basedir=".">
|
||||
<description>
|
||||
simple example build file
|
||||
</description>
|
||||
<!-- set global properties for this build -->
|
||||
<property name="src.dir" location="src"/>
|
||||
<property name="build.dir" location="build"/>
|
||||
<property name="lib.dir" location="lib"/>
|
||||
<property name="dist.dir" location="dist/tools"/>
|
||||
|
||||
<property name="revision" value="rUNVERSIONED"/>
|
||||
|
||||
<path id="external.jars">
|
||||
<fileset dir="${lib.dir}" includes="**/*.jar"/>
|
||||
</path>
|
||||
|
||||
<path id="project.classpath">
|
||||
<pathelement location="${src.dir}"/>
|
||||
<path refid="external.jars" />
|
||||
</path>
|
||||
|
||||
<target name="init">
|
||||
</target>
|
||||
|
||||
<target name="compile" description="compile the source " >
|
||||
<!-- Create the build directory structure used by compile -->
|
||||
<mkdir dir="${build.dir}"/>
|
||||
<!-- Compile the java code from ${src} into ${build} -->
|
||||
<javac srcdir="${src.dir}" destdir="${build.dir}"
|
||||
includeAntRuntime="no"
|
||||
includeJavaRuntime="no"
|
||||
classpathref="project.classpath"/>
|
||||
</target>
|
||||
|
||||
<target name="jar" depends="compile" description="generate the distribution" >
|
||||
<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
|
||||
<jar jarfile="${dist.dir}/TableViewer-${revision}.jar" basedir="${build.dir}">
|
||||
<zipgroupfileset dir="lib/" includes="*.jar" />
|
||||
<manifest>
|
||||
<attribute name="Main-Class" value="edu.wpi.first.table_viewer.TableViewer"/>
|
||||
</manifest>
|
||||
</jar>
|
||||
</target>
|
||||
|
||||
<target name="clean" description="clean up" >
|
||||
<!-- Delete the ${build} and ${dist} directory trees -->
|
||||
<delete dir="${build.dir}"/>
|
||||
<delete dir="${dist.dir}"/>
|
||||
</target>
|
||||
</project>
|
||||
Reference in New Issue
Block a user