Re: [P-unit-devel] SF.net SVN: p-unit: [152] trunk/punit
Status: Beta
Brought to you by:
zhanghuangzhu
|
From: Richard L. <ric...@gm...> - 2007-05-24 14:43:50
|
Hello Andrew, I don't think you need to remove them. ;-) Richard. On 5/24/07, zha...@us... <zha...@us...> wrote: > Revision: 152 > http://p-unit.svn.sourceforge.net/p-unit/?rev=152&view=rev > Author: zhanghuangzhu > Date: 2007-05-24 05:00:54 -0700 (Thu, 24 May 2007) > > Log Message: > ----------- > Andrew Zhang: fixed the compiler errors. > > Removed Paths: > ------------- > trunk/punit/build.xml > trunk/punit.extension/build.xml > > Deleted: trunk/punit/build.xml > =================================================================== > --- trunk/punit/build.xml 2007-05-24 11:30:08 UTC (rev 151) > +++ trunk/punit/build.xml 2007-05-24 12:00:54 UTC (rev 152) > @@ -1,41 +0,0 @@ > -<project name="p-unit" default="dist" basedir="."> > - <description> > - p-unit build system > - </description> > - <!-- set global properties for this build --> > - <property name="src" location="src"/> > - <property name="build" location="build"/> > - <property name="dist" location="../dist"/> > - <property name="project.name" value="p-unit"/> > - <property name="project.version" value="0.10-dev"/> > - <property name="punit.jar" value="${project.name}-${project.version}.jar"/> > - > - <target name="init"> > - <!-- Create the time stamp --> > - <tstamp/> > - <!-- Create the build directory structure used by compile --> > - <mkdir dir="${build}"/> > - </target> > - > - <target name="compile" depends="init" > - description="compile the source " > > - <!-- Compile the java code from ${src} into ${build} --> > - <javac srcdir="${src}" destdir="${build}"/> > - </target> > - > - <target name="dist" depends="compile" > - description="generate the distribution" > > - <!-- Create the distribution directory --> > - <mkdir dir="${dist}"/> > - > - <!-- Put everything in ${build} into the project.name-${DSTAMP}.jar file --> > - <jar jarfile="${dist}/${punit.jar}" basedir="${build}"/> > - </target> > - > - <target name="clean" > - description="clean up" > > - <!-- Delete the ${build} and ${dist} directory trees --> > - <delete dir="${build}"/> > - <delete dir="${dist}"/> > - </target> > -</project> > \ No newline at end of file > > Deleted: trunk/punit.extension/build.xml > =================================================================== > --- trunk/punit.extension/build.xml 2007-05-24 11:30:08 UTC (rev 151) > +++ trunk/punit.extension/build.xml 2007-05-24 12:00:54 UTC (rev 152) > @@ -1,44 +0,0 @@ > -<project name="p-unit-extension" default="dist" basedir="."> > - <description> > - p-unit-extension build system > - </description> > - <!-- set global properties for this build --> > - <import file="../punit/build.xml" /> > - <property name="src" location="src"/> > - <property name="build" location="build"/> > - <property name="p-unit-extension.jar" value="p-unit-extension-${project.version}.jar"/> > - > - <target name="init"> > - <!-- Create the time stamp --> > - <tstamp/> > - <!-- Create the build directory structure used by compile --> > - <mkdir dir="${build}"/> > - </target> > - > - <target name="compile" depends="init" > - description="compile the source " > > - <!-- Compile the java code from ${src} into ${build} --> > - <javac srcdir="${src}" destdir="${build}"> > - <classpath> > - <pathelement path="${punit.jar}"/> > - <fileset dir="lib"> > - <include name="**/*.jar" /> > - </fileset> > - </classpath> > - </javac> > - </target> > - > - <target name="dist" depends="compile" > - description="generate the distribution" > > - <!-- Create the distribution directory --> > - <mkdir dir="${dist}"/> > - <jar jarfile="${dist}/${p-unit-extension.jar}" basedir="${build}"/> > - </target> > - > - <target name="clean" > - description="clean up" > > - <!-- Delete the ${build} and ${dist} directory trees --> > - <delete dir="${build}"/> > - <delete dir="${dist}"/> > - </target> > -</project> > \ No newline at end of file > > > This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > P-unit-devel mailing list > P-u...@li... > https://lists.sourceforge.net/lists/listinfo/p-unit-devel > -- Richard Liang |