Update of /cvsroot/cweb/lgpl-utils
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv1144
Modified Files:
.cvsignore
Added Files:
build.properties build.xml
Log Message:
added a custom variant of the dsi/fastutils ByteFrontCodedArrayList to facilitate faster serialization. this will be replaced by a subclass once there is a release of fastutils which makes it possible to write that subclass (there needs to be protected method to rebuild the pointer array).
Index: .cvsignore
===================================================================
RCS file: /cvsroot/cweb/lgpl-utils/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** .cvsignore 9 Nov 2007 12:23:20 -0000 1.1
--- .cvsignore 2 Oct 2008 16:51:36 -0000 1.2
***************
*** 1 ****
--- 1,3 ----
target
+ ant-build
+ lgpl-utils-1.0-b2-dev.jar
--- NEW FILE: build.xml ---
<project name="lgpl-utils" default="jar" basedir=".">
<property file="build.properties"/>
<path id="build.classpath">
<fileset dir="lib">
<include name="**/*.jar"/>
</fileset>
</path>
<path id="runtime.classpath">
<pathelement location="${build.dir}"/>
<path refid="build.classpath"/>
</path>
<target name="clean">
<delete dir="${build.dir}"/>
</target>
<target name="prepare">
<mkdir dir="${build.dir}"/>
</target>
<target name="compile" depends="prepare">
<mkdir dir="${build.dir}"/>
<javac destdir="${build.dir}"
classpathref="build.classpath"
verbose="off"
target="1.5">
<src path="src/java"/>
<src path="src/test"/>
</javac>
<!-- copy resources. -->
<copy toDir="${build.dir}/classes">
<fileset dir="src/java">
<exclude name="**/*.java"/>
</fileset>
</copy>
</target>
<!-- overview="../bigdata/overview.html"
windowtitle="bigdata®" -->
<!--
<bottom><![CDATA[<i>Copyright © 2006-2008 Cognitive Web. All Rights Reserved.</i>]]></bottom>
-->
<target name="javadoc" depends="prepare">
<mkdir dir="${build.docs}/api"/>
<javadoc destdir="${build.docs}/api"
defaultexcludes="yes"
author="true"
version="true"
use="true"
classpathref="build.classpath">
<packageset dir="src/java"/>
<doctitle><![CDATA[<h1>lgpl-utils</h1>]]></doctitle>
<tag name="todo" scope="all" description="TODO:"/>
<tag name="issue" scope="all" description="ISSUE:"/>
<!--tag name="FIXME" scope="all" description="FIXME:"/-->
<link href="http://java.sun.com/j2se/1.5.0/docs/api/"/>
<!--<link href="http://openrdf.org/doc/sesame/api/"/>-->
</javadoc>
</target>
<target name="jar" depends="compile">
<jar destfile="${jar.name}">
<fileset dir="${build.dir}"/>
<manifest>
<!--<attribute name="Main-Class" value="com/bigdata/rdf/rio/TestRioIntegration"/>-->
</manifest>
</jar>
</target>
</project>
--- NEW FILE: build.properties ---
cweb.dir=..
build.dir=ant-build
build.docs=docs
jar.name=lgpl-utils-1.0-b2-dev.jar
|