EggHuntPlugin/build.xml
John Locke f31c254401 Publish old changes
Publish old changes that were stashed
Also include .xml files with maven build info
2023-06-25 21:37:08 -04:00

10 lines
No EOL
390 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<project name="MyPlugin" default="makejar" basedir=".">
<target name="makejar" description="Create a jar for the project">
<mkdir dir="target"></mkdir>
<jar destfile="target/${ant.project.name}.jar">
<fileset dir="bin"></fileset>
<fileset file="plugin.yml"></fileset>
</jar>
</target>
</project>