[Openproj-commitlog] openproj_exchange .project, NONE, 1.1 build.properties, NONE, 1.1 build.xml, N
Open Source desktop project management
Brought to you by:
akheirol
From: Anthony V. <av...@us...> - 2009-10-02 21:21:45
|
Update of /cvsroot/openproj/openproj_exchange In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv31517 Added Files: .project build.properties build.xml .classpath Log Message: initial commit of openproj_exchange - which is the source for the mpop.jar - into sourceforge --- NEW FILE: .project --- <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>openproj_exchange</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription> --- NEW FILE: build.xml --- <project default="dist" basedir="."> <property file="build.properties"/> <path id="compile.class.path"> <fileset dir="../openproj_contrib"> <include name="openproj-contrib.jar" /> <include name="openproj-script.jar" /> </fileset> <fileset dir="../openproj_contrib/lib/exchange"> <include name="*.jar" /> <exclude name="mpop.jar" /> </fileset> <fileset dir="../openproj_core"> <include name="dist/openproj-core.jar" /> </fileset> </path> <target name="prepare"> <mkdir dir="${build}"/> <taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="../openproj_contrib/ant-lib/ant-contrib.jar"/> </target> <target name="core"> <ant antfile="../openproj_core/build.xml" target="dist" inheritAll="false"/> </target> <target name="contrib1"> <if> <equals arg1="${build_contrib}" arg2="true" /> <then> <ant antfile="../openproj_contrib/build.xml" target="contrib" inheritAll="false"/> <ant antfile="../openproj_contrib/build.xml" target="script" inheritAll="false"/> <!--ant antfile="../openproj_contrib/build.xml" target="reports" inheritAll="false"/--> </then> </if> </target> <target name="contrib2"> <if> <equals arg1="${build_contrib}" arg2="true" /> <then> <!--ant antfile="../openproj_contrib/build.xml" target="exchange" inheritAll="false"/--> </then> </if> </target> <target name="build" depends="prepare,core"> <javac destdir="${build}" classpathref="compile.class.path" debug="off" nowarn="on" source="1.5" target="1.5"> <src path="${src}" /> <include name="**/*" /> <exclude name="**/version.properties" /> <exclude name="test/**" /> </javac> </target> <target name="lib" depends="build"> <jar jarfile="../openproj_contrib/lib/exchange/mpop.jar"> <zipfileset dir="${build}" > <include name="**/*" /> </zipfileset> <metainf dir="../openproj_build/license"> <include name="**" /> </metainf> </jar> </target> <target name="dist" depends="prepare,contrib1,lib,contrib2"> </target> <target name="clean"> <delete dir="${build}"/> <delete file="../openproj_contrib/lib/exchange/mpop.jar" /> <ant antfile="../openproj_core/build.xml" target="clean" inheritAll="false"/> </target> </project> --- NEW FILE: build.properties --- src=src build=build build_contrib=true --- NEW FILE: .classpath --- <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="var" path="JUNIT_HOME/junit.jar"/> <classpathentry combineaccessrules="false" kind="src" path="/openproj_core"/> <classpathentry kind="lib" path="/openproj_contrib/openproj-exchange.jar"/> <classpathentry kind="output" path="bin"/> </classpath> |