jarbuild.xml 610 Bytes
<?xml version="1.0" encoding="UTF-8"?>
<project name="LanBortalDatabase" default="LanBortalDatabase.jar">

	<description>Build the JAR to be embedded in your EAR</description>

	<property name="LanBortalDatabase.jar" location="../LanBortal/EarContent/lib/LanBortalDatabase.jar" />

	<uptodate property="LanBortalDatabase.jar-uptodate" targetfile="${LanBortalDatabase.jar}">
		<srcfiles dir="build/classes" includes="**" />
	</uptodate>

	<target name="LanBortalDatabase.jar" unless="LanBortalDatabase.jar-uptodate">
		<jar destfile="${LanBortalDatabase.jar}" basedir="build/classes" />
	</target>
	

</project>