[svn r118] added build scripts
This commit is contained in:
parent
ed5da52253
commit
8c342b16a0
12
build/foei-bin-jar.xml
Normal file
12
build/foei-bin-jar.xml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project name="foei-bin-jar" default="doBuildBinJar" basedir="../." >
|
||||||
|
|
||||||
|
<property name="destination" value="." />
|
||||||
|
<property name="source" value="bin"/>
|
||||||
|
<property name="destinationFile" value="idcanet-foei-bin.jar"/>
|
||||||
|
|
||||||
|
<target name="doBuildBinJar">
|
||||||
|
<jar destfile="${destination}/${destinationFile}" basedir="${source}" includes="**">
|
||||||
|
</jar>
|
||||||
|
</target>
|
||||||
|
</project>
|
21
build/foei-javadocs.xml
Normal file
21
build/foei-javadocs.xml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project name="foei-javadocs" default="javadoc" basedir="../." >
|
||||||
|
<target name="javadoc">
|
||||||
|
<javadoc access="public"
|
||||||
|
author="true"
|
||||||
|
classpath=""
|
||||||
|
destdir="doc/javadoc"
|
||||||
|
nodeprecated="false"
|
||||||
|
nodeprecatedlist="false"
|
||||||
|
noindex="false"
|
||||||
|
nonavbar="false"
|
||||||
|
notree="false"
|
||||||
|
packagenames="com.idcanet.foei/*"
|
||||||
|
source="1.5"
|
||||||
|
sourcepath="src"
|
||||||
|
splitindex="true"
|
||||||
|
use="true"
|
||||||
|
version="true"
|
||||||
|
/>
|
||||||
|
</target>
|
||||||
|
</project>
|
12
build/foei-src-jar.xml
Normal file
12
build/foei-src-jar.xml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project name="foei-src-jar" default="doBuildSrcJar" basedir="../." >
|
||||||
|
|
||||||
|
<property name="destination" value="." />
|
||||||
|
<property name="source" value="src"/>
|
||||||
|
<property name="destinationFile" value="idcanet-foei-src.jar"/>
|
||||||
|
|
||||||
|
<target name="doBuildSrcJar">
|
||||||
|
<jar destfile="${destination}/${destinationFile}" basedir="${source}" includes="**">
|
||||||
|
</jar>
|
||||||
|
</target>
|
||||||
|
</project>
|
Loading…
Reference in a new issue