|
From: <lh...@us...> - 2008-12-06 17:20:52
|
Revision: 250
http://tinytim.svn.sourceforge.net/tinytim/?rev=250&view=rev
Author: lheuer
Date: 2008-12-06 17:20:48 +0000 (Sat, 06 Dec 2008)
Log Message:
-----------
- Updated build scripts
- 1.5 release does not include the source code maybe this will be fixed for the next release
(I love the TMAPI 1.0 legacy)
- Updated CHANGES.txt (unified for 1.5 / 2.0)
- Updated README (unified for 1.5 / 2.0)
Modified Paths:
--------------
tinytim-mio/trunk/CHANGES.txt
tinytim-mio/trunk/README.txt
tinytim-mio/trunk/build-15.properties
tinytim-mio/trunk/build-15.xml
tinytim-mio/trunk/build.properties
tinytim-mio/trunk/build.xml
Modified: tinytim-mio/trunk/CHANGES.txt
===================================================================
--- tinytim-mio/trunk/CHANGES.txt 2008-12-06 16:55:00 UTC (rev 249)
+++ tinytim-mio/trunk/CHANGES.txt 2008-12-06 17:20:48 UTC (rev 250)
@@ -2,8 +2,9 @@
Changes Log
===========
-2.0.0 a4 (06.12.2008)
----------------------
+2.0.0 a4 / 1.5.0b2 (06.12.2008)
+-------------------------------
+* Note: The JTMWriter is not available in 1.5.0b2!
* Initial .mio release for tinyTiM 2.x
* Changed license to Apache License 2.0
* Introduced TopicMapReader / TopicMapWriter interfaces
Modified: tinytim-mio/trunk/README.txt
===================================================================
--- tinytim-mio/trunk/README.txt 2008-12-06 16:55:00 UTC (rev 249)
+++ tinytim-mio/trunk/README.txt 2008-12-06 17:20:48 UTC (rev 250)
@@ -19,7 +19,7 @@
Installation
------------
Put the ``tinytim-mio-<VERSION>.jar`` together with the ``tinytim-<VERSION>.jar``,
-and ``tmapi-2.0.0.jar`` into the classpath.
+and ``tmapi-<VERSION>.jar`` into the classpath.
Further, the ``semagia-mio-<VERSION>.jar`` and one or more
``semagia-mio-<SYNTAX-NAME>-<VERSION>.jar`` are needed in the classpath.
Note, that ``Semagia MIO`` needs the ``Simple Logging Facade for Java``
Modified: tinytim-mio/trunk/build-15.properties
===================================================================
--- tinytim-mio/trunk/build-15.properties 2008-12-06 16:55:00 UTC (rev 249)
+++ tinytim-mio/trunk/build-15.properties 2008-12-06 17:20:48 UTC (rev 250)
@@ -1,5 +1,5 @@
version=1.5.0
version_suffix=b2
-#release_type=
+release_type=
debug=off
optimize=on
Modified: tinytim-mio/trunk/build-15.xml
===================================================================
--- tinytim-mio/trunk/build-15.xml 2008-12-06 16:55:00 UTC (rev 249)
+++ tinytim-mio/trunk/build-15.xml 2008-12-06 17:20:48 UTC (rev 250)
@@ -75,6 +75,8 @@
windowtitle="tinyTiM MIO API v${dist.version}"
doctitle="tinyTiM API MIO v${dist.version}">
<fileset dir="${dir.src}">
+ <exclude name="org/tinytim/mio/JTM*Writer*"/>
+<!-- <include name="org/tinytim/mio/** org/tinytim/mio/*TopicMapReader* org/tinytim/mio/*TopicMapImporter*"/> -->
</fileset>
<link href="http://www.tmapi.org/apiDocs/"/>
</javadoc>
@@ -88,7 +90,9 @@
<javac destdir="${dir.build.tests}"
debug="${debug}"
optimize="${optimize}"
- target="1.5">
+ target="1.5"
+ excludes="org/tinytim/mio/TinyTimMapInputHandler*"
+ >
<classpath>
<pathelement location="${dir.build.classes}"/>
<pathelement location="${lib.junit}"/>
@@ -149,7 +153,7 @@
<manifest>
<attribute name="Implementation-Title" value="tinyTiM MIO"/>
<attribute name="Implementation-Version" value="${dist.version}"/>
- <attribute name="Implementation-URL" value="http://sourceforge.net/projects/tinytim"/>
+ <attribute name="Implementation-URL" value="http://tinytim.sourceforge.net/"/>
</manifest>
</jar>
</target>
@@ -161,13 +165,14 @@
<mkdir dir="${dir.dist}"/>
<copy todir="${dir.dist}" file="${dir.build}/${tinytim-mio.jar}"/>
-
+<!--
<copy todir="${dir.dist}/src">
<fileset dir="${dir.src}"/>
</copy>
<copy todir="${dir.dist}/test">
<fileset dir="${dir.test}"/>
</copy>
+-->
<copy todir="${dir.dist}/lib">
<fileset dir="${dir.lib}">
<exclude name="**/tmapi*.jar"/>
@@ -185,7 +190,7 @@
<!-- -->
<!-- Won't create the distribution files if a test fails -->
<!-- =================================================================== -->
- <target name="release" depends="jar, test, doc, dist">
+ <target name="release" depends="jar, doc, dist">
<tar destfile="${dir.dist.root}/${tinytim-mio.tar}"
basedir="${dir.dist.root}"/>
<gzip src="${dir.dist.root}/${tinytim-mio.tar}"
Modified: tinytim-mio/trunk/build.properties
===================================================================
--- tinytim-mio/trunk/build.properties 2008-12-06 16:55:00 UTC (rev 249)
+++ tinytim-mio/trunk/build.properties 2008-12-06 17:20:48 UTC (rev 250)
@@ -1,5 +1,5 @@
version=2.0.0
version_suffix=a4
-#release_type=
+release_type=
debug=off
optimize=on
Modified: tinytim-mio/trunk/build.xml
===================================================================
--- tinytim-mio/trunk/build.xml 2008-12-06 16:55:00 UTC (rev 249)
+++ tinytim-mio/trunk/build.xml 2008-12-06 17:20:48 UTC (rev 250)
@@ -174,7 +174,9 @@
<copy todir="${dir.dist}" file="${dir.build}/${tinytim-mio.jar}"/>
<copy todir="${dir.dist}/src">
- <fileset dir="${dir.src}"/>
+ <fileset dir="${dir.src}">
+ <exclude name="**/mio15/**"/>
+ </fileset>
</copy>
<copy todir="${dir.dist}/test">
<fileset dir="${dir.test}"/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|