Revision: 15092
http://gate.svn.sourceforge.net/gate/?rev=15092&view=rev
Author: valyt
Date: 2012-01-17 09:36:08 +0000 (Tue, 17 Jan 2012)
Log Message:
-----------
GUK as an independent project.
Also checking in the built jar for convenience (GUK won't get changed and
re-compiled that often).
Added Paths:
-----------
guk/trunk/.classpath
guk/trunk/.project
guk/trunk/build.xml
guk/trunk/doc/
guk/trunk/guk.jar
guk/trunk/nl.mpi.lookup.jar
Property Changed:
----------------
guk/trunk/
Property changes on: guk/trunk
___________________________________________________________________
Added: svn:ignore
+ classes
Added: guk/trunk/.classpath
===================================================================
--- guk/trunk/.classpath (rev 0)
+++ guk/trunk/.classpath 2012-01-17 09:36:08 UTC (rev 15092)
@@ -0,0 +1,6 @@
+<?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="output" path="classes"/>
+</classpath>
Property changes on: guk/trunk/.classpath
___________________________________________________________________
Added: svn:eol-style
+ native
Added: guk/trunk/.project
===================================================================
--- guk/trunk/.project (rev 0)
+++ guk/trunk/.project 2012-01-17 09:36:08 UTC (rev 15092)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>GUK</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>
Property changes on: guk/trunk/.project
___________________________________________________________________
Added: svn:eol-style
+ native
Added: guk/trunk/build.xml
===================================================================
--- guk/trunk/build.xml (rev 0)
+++ guk/trunk/build.xml 2012-01-17 09:36:08 UTC (rev 15092)
@@ -0,0 +1,60 @@
+<project name="GUK" basedir="." default="jar" >
+ <!-- Prevent Ant from warning about includeantruntime not being set -->
+ <property name="build.sysclasspath" value="ignore" />
+
+ <property name="src.dir" location="src" />
+ <property name="classes.dir" location="classes" />
+ <property name="doc.dir" location="doc" />
+ <property name="javadoc.dir" location="${doc.dir}/javadoc" />
+ <property name="jar.location" location="guk.jar" />
+
+ <!-- create build directory structure -->
+ <target name="prepare">
+ <mkdir dir="${classes.dir}" />
+ </target>
+
+ <!-- compile the source -->
+ <target name="compile" depends="prepare">
+ <javac classpathref="compile.classpath"
+ srcdir="${src.dir}"
+ destdir="${classes.dir}"
+ debug="true"
+ debuglevel="lines,source"
+ encoding="UTF-8"
+ source="1.5" target="1.5" />
+ </target>
+
+ <!-- create the JAR file -->
+ <target name="jar" depends="compile" >
+ <jar destfile="${jar.location}"
+ update="false"
+ basedir="${classes.dir}" />
+ </target>
+
+ <!-- remove the generated .class files -->
+ <target name="clean.classes" >
+ <delete dir="${classes.dir}" />
+ </target>
+
+ <!-- Clean up - remove .class and .jar files -->
+ <target name="clean" depends="clean.classes" >
+ <delete file="${jar.location}" />
+ </target>
+
+ <!-- Build JavaDoc documentation -->
+ <target name="doc.prepare">
+ <mkdir dir="${javadoc.dir}" />
+ </target>
+
+ <target name="javadoc" depends="doc.prepare">
+ <javadoc destdir="${javadoc.dir}" packagenames="*"
+ encoding="UTF-8"
+ windowtitle="${plugin.name} JavaDoc"
+ source="1.5">
+ <sourcepath>
+ <pathelement location="${src.dir}" />
+ </sourcepath>
+ <link href="http://java.sun.com/j2se/1.6.0/docs/api/" />
+ </javadoc>
+ </target>
+</project>
Property changes on: guk/trunk/build.xml
___________________________________________________________________
Added: svn:eol-style
+ native
Property changes on: guk/trunk/doc
___________________________________________________________________
Added: svn:ignore
+ javadoc
Added: guk/trunk/guk.jar
===================================================================
(Binary files differ)
Property changes on: guk/trunk/guk.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: guk/trunk/nl.mpi.lookup.jar
===================================================================
(Binary files differ)
Property changes on: guk/trunk/nl.mpi.lookup.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs