Archived
0
This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Faucet/build.xml
2017-11-15 18:37:23 +01:00

8 lines
292 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<project name="makejar" default="makejar" basedir=".">
<target name ="makejar" description="Create a jar for the Faucet project">
<jar jarfile="Faucet.jar" includes="*.class" basedir="bin"/>
<echo>"This is a test"</echo>
</target>
</project>