gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] fenfire TODO-loom build.xml


From: Benja Fallenstein
Subject: [Gzz-commits] fenfire TODO-loom build.xml
Date: Wed, 12 Mar 2003 14:22:31 -0500

CVSROOT:        /cvsroot/fenfire
Module name:    fenfire
Changes by:     Benja Fallenstein <address@hidden>      03/03/12 14:22:31

Modified files:
        .              : TODO-loom build.xml 

Log message:
        A jar-building task.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/fenfire/fenfire/TODO-loom.diff?tr1=1.35&tr2=1.36&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/fenfire/fenfire/build.xml.diff?tr1=1.10&tr2=1.11&r1=text&r2=text

Patches:
Index: fenfire/TODO-loom
diff -u fenfire/TODO-loom:1.35 fenfire/TODO-loom:1.36
--- fenfire/TODO-loom:1.35      Wed Mar 12 13:59:16 2003
+++ fenfire/TODO-loom   Wed Mar 12 14:22:31 2003
@@ -21,13 +21,6 @@
     - README update to explain property selection
       and the View menu
 
-    - JAR target; java -jar loom.jar should start the client
-
-    humppake:
-      + Optional node view showing Resources as green ovals
-        (no border) and Literals as yellow rectangles (no border).
-        This convention is used e.g. by the RDF specs.
-
 later (or now if somebody wants to):
 
     - clip instead of truncate text
@@ -59,6 +52,9 @@
       we cannot always show all nodes any more, then.
 
 humppake:
+    - Optional node view showing Resources as green ovals
+      (no border) and Literals as yellow rectangles (no border).
+      This convention is used e.g. by the RDF specs.
     - enhance wheel (or create additional Wheel Views):
       + more like those in Gzz 0.6, e.g. with more than the 
         immediate neighbours showing
Index: fenfire/build.xml
diff -u fenfire/build.xml:1.10 fenfire/build.xml:1.11
--- fenfire/build.xml:1.10      Wed Mar 12 03:07:34 2003
+++ fenfire/build.xml   Wed Mar 12 14:22:31 2003
@@ -48,8 +48,23 @@
        </java>
     </target>
 
+    <target name="jar" depends="clean,fenfire,jar-only"/>
+
+    <target name="jar-only">
+        <jar destfile="loom.jar">
+           <fileset dir="${build}"/>
+           <zipfileset src="lib/libvob.jar"/>
+           <zipgroupfileset dir="${dep}" includes="*.jar"/>
+           <manifest>
+               <attribute name="Main-Class" 
+                          value="org.fenfire.loom.Loom"/>
+           </manifest>
+       </jar>
+    </target>
+
     <target name="clean">
         <delete dir="${build}"/>
+       <delete file="loom.jar"/>
     </target>
 
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]