[Schmitzm-commits] r1384 - trunk
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Wed Jan 26 15:39:42 CET 2011
Author: alfonx
Date: 2011-01-26 15:39:41 +0100 (Wed, 26 Jan 2011)
New Revision: 1384
Removed:
trunk/ant-contrib-1.0b2.jar
trunk/build.xml
trunk/defaults/
trunk/doc/
trunk/lib/
trunk/license-lgpl.txt
trunk/pom.xml
trunk/readme.txt
trunk/release.txt
trunk/src/
trunk/src_junit/
trunk/testresources/
Log:
deleting all
Deleted: trunk/ant-contrib-1.0b2.jar
===================================================================
(Binary files differ)
Deleted: trunk/build.xml
===================================================================
--- trunk/build.xml 2011-01-26 13:46:20 UTC (rev 1383)
+++ trunk/build.xml 2011-01-26 14:39:41 UTC (rev 1384)
@@ -1,257 +0,0 @@
-<!-- Build file for SCHMITZM. Target ZIPs/JARs are placed in "dist" folder.
- NOTE: This script does not compile the java source (because of library
- dependencies)!!
-
- Option "jar" -> a JAR from the existing binaries expected in folder
- "targes/classes" plus a ZIP of the JAR
- Option "src" -> a ZIP of the source code in folder "src"
- Option "javadoc" -> a JavaDoc in folder "javadoc" plus a ZIP of
- this folder
- Option "all" -> all of the upper mentioned options
- Option "basic" -> only "jar" and "src"
-
- Option "bin_ms" -> compile the "src" folder to "classes" with Martin's classpath
- Option "all_ms" -> "bin_ms", "jar", "src", "javadoc"
-
- Option "bin_sk" -> compile the "src" folder to "classes" with Stefan's classpath
- Option "all_sk" -> "bin_sk", "jar", "src", "javadoc"
-
- The default option is "basic"
--->
-<project default="basic" basedir="." xmlns:ac="antlib:net.sf.antcontrib">
- <taskdef uri="antlib:net.sf.antcontrib" classpath="ant-contrib-1.0b2.jar" />
-
- <!-- Project name -->
- <property name="PROJECT.NAME" value="schmitzm"/>
- <!-- Version number added as postfix to files -->
- <property name="VERSION" value="-2.3-SNAPSHOT"/>
-
- <!-- Destination folder for ZIPs and JARs -->
- <property name="DEST.DIR" value="dist"/>
- <!-- Prefix for the destination file names
- e.g. "schmitzm" >> "schmitzm.jar", "schmitzm-src.jar" -->
- <property name="PROJECT.PREFIX" value="${PROJECT.NAME}${VERSION}"/>
-
- <!-- Global prefix directory for ZIP files (except ZIP of JAR!) -->
- <property name="ZIP.ROOT.DIR" value="${PROJECT.PREFIX}"/>
-
- <!-- Source and Destination for source code ZIP -->
- <property name="DIR.SRC" value="src"/>
- <property name="FILE.SRC.ZIP" value="${DEST.DIR}/${PROJECT.PREFIX}-src.zip"/>
-
- <!-- Source and Destination for JAR file -->
- <property name="DIR.CLASSES" value="target/classes"/>
- <property name="FILE.JAR" value="${DEST.DIR}/${PROJECT.PREFIX}.jar"/>
- <property name="FILE.JAR.ZIP" value="${FILE.JAR}.zip"/>
-
- <!-- Destination for JavaDoc and its ZIP -->
- <property name="DIR.JAVADOC" value="javadoc"/>
- <property name="FILE.JAVADOC.ZIP" value="${DEST.DIR}/${PROJECT.PREFIX}-doc.zip"/>
- <property name="LINK.JDK" value="http://java.sun.com/javase/6/docs/api/"/>
- <property name="LINK.LOG4J" value="http://logging.apache.org/log4j/docs/api/"/>
- <property name="JAVADOC.TITLE" value="Klassenbibliothek Martin Schmitz"/>
-
- <!-- Destination and classpath to create binaries with Martin's parameters (MS) -->
- <property name="LIB.ROOT.MS" value="C:/Programme/Java"/>
- <property name="GT.ROOT.MS" value="${LIB.ROOT.MS}/gt2-2.6.1"/>
- <property name="COLT.ROOT.MS" value="${LIB.ROOT.MS}/Colt"/>
- <property name="JFREE.ROOT.MS" value="${LIB.ROOT.MS}/jfreechart-1.0.13"/>
- <property name="JINI.ROOT.MS" value="${LIB.ROOT.MS}/jini"/>
- <property name="LOG4J.ROOT.MS" value="${LIB.ROOT.MS}/logging-log4j-1.2.14"/>
- <property name="POI.ROOT.MS" value="${LIB.ROOT.MS}/POI"/>
- <property name="JAI.ROOT.MS" value="${LIB.ROOT.MS}/jdk1.6.0_05/jre/lib/ext"/>
-
- <!-- Destination and classpath to create binaries with Martin's parameters (MS) -->
- <property name="LIB.ROOT.SK" value="..."/>
- <property name="GT.ROOT.SK" value="${LIB.ROOT.SK}/..."/>
- <property name="COLT.ROOT.SK" value="${LIB.ROOT.SK}/..."/>
- <property name="JFREE.ROOT.SK" value="${LIB.ROOT.SK}/..."/>
- <property name="JINI.ROOT.SK" value="${LIB.ROOT.SK}/..."/>
- <property name="LOG4J.ROOT.SK" value="${LIB.ROOT.SK}/..."/>
- <property name="POI.ROOT.SK" value="${LIB.ROOT.SK}/..."/>
- <property name="JAI.ROOT.SK" value="${LIB.ROOT.SK}/..."/>
-
- <target name="all">
- <antcall target="jar"/>
- <antcall target="src"/>
- <antcall target="javadoc"/>
- </target>
-
- <target name="all_ms">
- <antcall target="bin_ms"/>
- <antcall target="jar"/>
- <antcall target="src"/>
- <antcall target="javadoc"/>
- </target>
-
- <target name="all_sk">
- <antcall target="bin_sk"/>
- <antcall target="jar"/>
- <antcall target="src"/>
- <antcall target="javadoc"/>
- </target>
-
- <target name="basic">
- <antcall target="jar"/>
- <antcall target="src"/>
- </target>
-
- <!-- ############## Create a JAR from "classes" and ZIP it ############## -->
- <target name="jar" depends="nativeToAscii">
-<!-- <target name="jar"> -->
- <delete failonerror="false" file="${FILE.JAR}"/>
- <jar destfile="${FILE.JAR}" index="false" level="8" duplicate="preserve">
- <fileset dir="${DIR.CLASSES}">
- <exclude name="schmitzm/test**" />
- <exclude name="**/*.html" />
- <exclude name="**/*.xcf" />
- <exclude name="**/Thumbs.db" />
- </fileset>
- <manifest>
- <attribute name="Created-By" value="Martin O.J. Schmitz, Stefan A. Krüger" />
- </manifest>
- </jar>
- <!-- Create a ZIP of the JAR -->
- <delete failonerror="false" file="${FILE.JAR.ZIP}"/>
- <zip basedir="." destfile="${FILE.JAR.ZIP}">
- <filename name="${FILE.JAR}"/>
- </zip>
- </target>
-
- <!-- ############## Create a ZIP from "src" folder ############## -->
- <target name="src">
- <!-- Create a ZIP from "src" folder -->
- <delete failonerror="false" file="${FILE.SRC.ZIP}"/>
- <zip destfile="${FILE.SRC.ZIP}" update="false">
- <zipfileset dir="${DIR.SRC}" prefix="${ZIP.ROOT.DIR}/${DIR.SRC}">
- <exclude name="schmitzm/test**" />
- <exclude name="**/Thumbs.db" />
- <exclude name="**/.svn" />
- </zipfileset>
- </zip>
- <!-- Add build.xml to ZIP -->
- <zip destfile="${FILE.SRC.ZIP}" update="true">
- <zipfileset file="build.xml" prefix="${ZIP.ROOT.DIR}"/>
- </zip>
- </target>
-
- <!-- ############## Create a JavaDoc to "javadoc" and ZIP it ############## -->
- <target name="javadoc">
- <!-- Create a JavaDoc to "javadoc" folder -->
- <delete failonerror="false" dir="${DIR.JAVADOC}"/>
- <javadoc sourcepath ="${DIR.SRC}"
- destdir ="${DIR.JAVADOC}"
- author ="true"
- version ="true"
- overview ="${DIR.SRC}/overview.html"
- windowtitle="${JAVADOC.TITLE}"
- >
- <excludepackage name="schmitzm.test"/>
- <link href="${LINK.JDK}"/>
- <link href="${LINK.LOG4J}"/>
- </javadoc>
- <!-- Create a ZIP from "javadoc" folder -->
- <delete failonerror="false" file="${FILE.JAVADOC.ZIP}"/>
- <zip destfile="${FILE.JAVADOC.ZIP}" update="false">
- <zipfileset dir="${DIR.JAVADOC}" prefix="${ZIP.ROOT.DIR}/${DIR.JAVADOC}">
- <exclude name="**/Thumbs.db" />
- <exclude name="**/.svn" />
- </zipfileset>
- </zip>
- </target>
-
- <!-- ############## Create binaries with Martin's parameters ############## -->
- <target name="bin_ms">
- <property name="GT.ROOT" value="${GT.ROOT.MS}"/>
- <property name="COLT.ROOT" value="${COLT.ROOT.MS}"/>
- <property name="JFREE.ROOT" value="${JFREE.ROOT.MS}"/>
- <property name="JINI.ROOT" value="${JINI.ROOT.MS}"/>
- <property name="LOG4J.ROOT" value="${LOG4J.ROOT.MS}"/>
- <property name="POI.ROOT" value="${POI.ROOT.MS}"/>
- <property name="JAI.ROOT" value="${JAI.ROOT.MS}"/>
- <antcall target="javac"/>
- </target>
-
- <!-- ############## Create binaries with Stefan's parameters ############## -->
- <target name="bin_sk">
- <property name="GT.ROOT" value="${GT.ROOT.SK}"/>
- <property name="COLT.ROOT" value="${COLT.ROOT.SK}"/>
- <property name="JFREE.ROOT" value="${JFREE.ROOT.SK}"/>
- <property name="JINI.ROOT" value="${JINI.ROOT.SK}"/>
- <property name="LOG4J.ROOT" value="${LOG4J.ROOT.SK}"/>
- <property name="POI.ROOT" value="${POI.ROOT.SK}"/>
- <property name="JAI.ROOT" value="${JAI.ROOT.SK}"/>
- <antcall target="javac"/>
- </target>
-
- <!-- ############## Create binaries ############## -->
- <target name="javac">
- <!--delete failonerror="false" dir="${DIR.BIN}"/-->
- <mkdir dir="${DIR.CLASSES}"/>
- <!-- Compile source to binaries folder -->
- <javac srcdir ="${DIR.SRC}"
- destdir ="${DIR.CLASSES}"
- >
- <classpath>
- <fileset dir="lib/gt-unsupported">
- <include name="*.jar"/>
- </fileset>
- <fileset dir="${COLT.ROOT}">
- <include name="*.jar"/>
- </fileset>
- <fileset dir="${JFREE.ROOT}">
- <include name="*.jar"/>
- </fileset>
- <fileset dir="${JINI.ROOT}">
- <include name="lib/*.jar"/>
- <include name="lib-dl/*.jar"/>
- <include name="lib-ext/*.jar"/>
- </fileset>
- <fileset dir="${LOG4J.ROOT}">
- <include name="*.jar"/>
- </fileset>
- <fileset dir="${POI.ROOT}">
- <include name="*.jar"/>
- </fileset>
- <fileset dir="${GT.ROOT}">
- <include name="*.jar"/>
- </fileset>
- <fileset dir="${JAI.ROOT}">
- <include name="*.jar"/>
- </fileset>
- </classpath>
- </javac>
- <!-- copy other necessary files to destination folder -->
- <copy todir="${DIR.CLASSES}">
- <fileset dir="${DIR.SRC}">
- <include name="**/COPYING*"/> <!-- Licence -->
- <include name="**/*.LIST"/> <!-- META-INF -->
- <include name="**/resource/**"/> <!-- resource files -->
- <exclude name="**/Thumbs.db" />
- <exclude name="**/.svn/"/>
- </fileset>
- </copy>
- </target>
-
- <target name="nativeToAscii" description="Wandelt alle .properties dateien in src/ in ascii UTF8 um.">
- <ac:for xmlns:ac="antlib:net.sf.antcontrib" param="file">
- <path>
- <fileset dir="${DIR.SRC}" includes="**/*.properties" />
- </path>
- <sequential>
- <move file="@{file}" overwrite="true" tofile="@{file}Native" verbose="false"/>
- </sequential>
- </ac:for>
- <native2ascii encoding="ISO8859_15" src="${DIR.SRC}" includes="**/*.propertiesNative" dest="${DIR.SRC}" ext=".properties" />
-
- <ac:for xmlns:ac="antlib:net.sf.antcontrib" param="file">
- <path>
- <fileset dir="${DIR.SRC}" includes="**/*.propertiesNative" />
- </path>
- <sequential>
- <delete file="@{file}" quiet="true"/>
- </sequential>
- </ac:for>
- </target>
-
-</project>
Deleted: trunk/license-lgpl.txt
===================================================================
--- trunk/license-lgpl.txt 2011-01-26 13:46:20 UTC (rev 1383)
+++ trunk/license-lgpl.txt 2011-01-26 14:39:41 UTC (rev 1384)
@@ -1,167 +0,0 @@
- GNU LESSER GENERAL PUBLIC LICENSE
- Version 3, 29 June 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-
- This version of the GNU Lesser General Public License incorporates
-the terms and conditions of version 3 of the GNU General Public
-License, supplemented by the additional permissions listed below.
-
- 0. Additional Definitions.
-
- As used herein, "this License" refers to version 3 of the GNU Lesser
-General Public License, and the "GNU GPL" refers to version 3 of the GNU
-General Public License.
-
- "The Library" refers to a covered work governed by this License,
-other than an Application or a Combined Work as defined below.
-
- An "Application" is any work that makes use of an interface provided
-by the Library, but which is not otherwise based on the Library.
-Defining a subclass of a class defined by the Library is deemed a mode
-of using an interface provided by the Library.
-
- A "Combined Work" is a work produced by combining or linking an
-Application with the Library. The particular version of the Library
-with which the Combined Work was made is also called the "Linked
-Version".
-
- The "Minimal Corresponding Source" for a Combined Work means the
-Corresponding Source for the Combined Work, excluding any source code
-for portions of the Combined Work that, considered in isolation, are
-based on the Application, and not on the Linked Version.
-
- The "Corresponding Application Code" for a Combined Work means the
-object code and/or source code for the Application, including any data
-and utility programs needed for reproducing the Combined Work from the
-Application, but excluding the System Libraries of the Combined Work.
-
- 1. Exception to Section 3 of the GNU GPL.
-
- You may convey a covered work under sections 3 and 4 of this License
-without being bound by section 3 of the GNU GPL.
-
- 2. Conveying Modified Versions.
-
- If you modify a copy of the Library, and, in your modifications, a
-facility refers to a function or data to be supplied by an Application
-that uses the facility (other than as an argument passed when the
-facility is invoked), then you may convey a copy of the modified
-version:
-
- a) under this License, provided that you make a good faith effort to
- ensure that, in the event an Application does not supply the
- function or data, the facility still operates, and performs
- whatever part of its purpose remains meaningful, or
-
- b) under the GNU GPL, with none of the additional permissions of
- this License applicable to that copy.
-
- 3. Object Code Incorporating Material from Library Header Files.
-
- The object code form of an Application may incorporate material from
-a header file that is part of the Library. You may convey such object
-code under terms of your choice, provided that, if the incorporated
-material is not limited to numerical parameters, data structure
-layouts and accessors, or small macros, inline functions and templates
-(ten or fewer lines in length), you do both of the following:
-
- a) Give prominent notice with each copy of the object code that the
- Library is used in it and that the Library and its use are
- covered by this License.
-
- b) Accompany the object code with a copy of the GNU GPL and this license
- document.
-
- 4. Combined Works.
-
- You may convey a Combined Work under terms of your choice that,
-taken together, effectively do not restrict modification of the
-portions of the Library contained in the Combined Work and reverse
-engineering for debugging such modifications, if you also do each of
-the following:
-
- a) Give prominent notice with each copy of the Combined Work that
- the Library is used in it and that the Library and its use are
- covered by this License.
-
- b) Accompany the Combined Work with a copy of the GNU GPL and this license
- document.
-
- c) For a Combined Work that displays copyright notices during
- execution, include the copyright notice for the Library among
- these notices, as well as a reference directing the user to the
- copies of the GNU GPL and this license document.
-
- d) Do one of the following:
-
- 0) Convey the Minimal Corresponding Source under the terms of this
- License, and the Corresponding Application Code in a form
- suitable for, and under terms that permit, the user to
- recombine or relink the Application with a modified version of
- the Linked Version to produce a modified Combined Work, in the
- manner specified by section 6 of the GNU GPL for conveying
- Corresponding Source.
-
- 1) Use a suitable shared library mechanism for linking with the
- Library. A suitable mechanism is one that (a) uses at run time
- a copy of the Library already present on the user's computer
- system, and (b) will operate properly with a modified version
- of the Library that is interface-compatible with the Linked
- Version.
-
- e) Provide Installation Information, but only if you would otherwise
- be required to provide such information under section 6 of the
- GNU GPL, and only to the extent that such information is
- necessary to install and execute a modified version of the
- Combined Work produced by recombining or relinking the
- Application with a modified version of the Linked Version. (If
- you use option 4d0, the Installation Information must accompany
- the Minimal Corresponding Source and Corresponding Application
- Code. If you use option 4d1, you must provide the Installation
- Information in the manner specified by section 6 of the GNU GPL
- for conveying Corresponding Source.)
-
- 5. Combined Libraries.
-
- You may place library facilities that are a work based on the
-Library side by side in a single library together with other library
-facilities that are not Applications and are not covered by this
-License, and convey such a combined library under terms of your
-choice, if you do both of the following:
-
- a) Accompany the combined library with a copy of the same work based
- on the Library, uncombined with any other library facilities,
- conveyed under the terms of this License.
-
- b) Give prominent notice with the combined library that part of it
- is a work based on the Library, and explaining where to find the
- accompanying uncombined form of the same work.
-
- 6. Revised Versions of the GNU Lesser General Public License.
-
- The Free Software Foundation may publish revised and/or new versions
-of the GNU Lesser General Public License from time to time. Such new
-versions will be similar in spirit to the present version, but may
-differ in detail to address new problems or concerns.
-
- Each version is given a distinguishing version number. If the
-Library as you received it specifies that a certain numbered version
-of the GNU Lesser General Public License "or any later version"
-applies to it, you have the option of following the terms and
-conditions either of that published version or of any later version
-published by the Free Software Foundation. If the Library as you
-received it does not specify a version number of the GNU Lesser
-General Public License, you may choose any version of the GNU Lesser
-General Public License ever published by the Free Software Foundation.
-
- If the Library as you received it specifies that a proxy can decide
-whether future versions of the GNU Lesser General Public License shall
-apply, that proxy's public statement of acceptance of any version is
-permanent authorization for you to choose that version for the
-Library.
-
- END OF TERMS AND CONDITIONS
\ No newline at end of file
Deleted: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2011-01-26 13:46:20 UTC (rev 1383)
+++ trunk/pom.xml 2011-01-26 14:39:41 UTC (rev 1384)
@@ -1,572 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-
- <modelVersion>4.0.0</modelVersion>
- <groupId>de.schmitzm</groupId>
- <artifactId>schmitzm-library</artifactId>
- <name>schmitzm-library</name>
- <version>2.4-SNAPSHOT</version>
- <description>A jar full of utility methods for Java6, Swing, Geotools
- and JFreeChart</description>
-
- <issueManagement>
- <system>gforge</system>
- <url>http://wald.intevation.org/tracker/?group_id=47</url>
- </issueManagement>
-
- <licenses>
- <license>
- <name>Lesser General Public License (LGPL)</name>
- <url>http://www.gnu.org/copyleft/lgpl.txt</url>
- </license>
- </licenses>
-
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <geotools.version>2.6.5</geotools.version>
- </properties>
-
- <developers>
- <developer>
- <id>mschmitz</id>
- <name>Martin Schmitz</name>
- <timezone>GMT+1</timezone>
- <roles>
- <role>Developer</role>
- </roles>
- </developer>
- <developer>
- <id>alfonx</id>
- <name>Stefan A. Tzeggai</name>
- <email>tzeggai at wikisquare.de</email>
- <url>http://www.wikisquare.de</url>
- <organization>Wikisquare.de</organization>
- <organizationUrl>http://www.wikisquare.de</organizationUrl>
- <timezone>GMT+1</timezone>
- <roles>
- <role>Developer</role>
- <role>Maven package maintainer</role>
- </roles>
- </developer>
- </developers>
-
- <scm>
- <connection>scm:https://svn.wald.intevation.org/svn/schmitzm</connection>
- <url>https://svn.wald.intevation.org/svn/schmitzm/trunk</url>
- <developerConnection>svn+ssh://developername@svn.wald.intevation.org/schmitzm/trunk</developerConnection>
- </scm>
-
- <organization>
- <url>http://www.wikisquare.de</url>
- </organization>
-
-
- <dependencies>
-
- <dependency>
- <groupId>javax.jnlp</groupId>
- <artifactId>jnlp</artifactId>
- <version>1.6</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.geotools</groupId>
- <artifactId>gt-render</artifactId>
- <version>${geotools.version}</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.geotools.xsd</groupId>
- <artifactId>gt-xsd-sld</artifactId>
- <version>${geotools.version}</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.geotools</groupId>
- <artifactId>gt-shapefile-renderer</artifactId>
- <version>${geotools.version}</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.geotools</groupId>
- <artifactId>gt-legacy</artifactId>
- <version>${geotools.version}</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.geotools</groupId>
- <artifactId>gt-brewer</artifactId>
- <version>${geotools.version}</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.geotools</groupId>
- <artifactId>gt-image</artifactId>
- <version>${geotools.version}</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.geotools</groupId>
- <artifactId>gt-coverage</artifactId>
- <version>${geotools.version}</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.geotools</groupId>
- <artifactId>gt-geotiff</artifactId>
- <version>${geotools.version}</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.geotools</groupId>
- <artifactId>gt-wfs</artifactId>
- <version>${geotools.version}</version>
- <type>jar</type>
- </dependency>
-
- <dependency>
- <groupId>org.geotools</groupId>
- <artifactId>gt-swing</artifactId>
- <version>${geotools.version}</version>
- <type>jar</type>
- <scope>compile</scope>
- <exclusions>
- <!-- We use miglayout 3.7.3, not 3.7 -->
- <exclusion>
- <groupId>com.miglayout</groupId>
- <artifactId>miglayout</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
-
- <dependency>
- <groupId>javax.mail</groupId>
- <artifactId>mail</artifactId>
- <version>1.4.1</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>jfree</groupId>
- <artifactId>jfreechart</artifactId>
- <version>1.0.13</version>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.geotools</groupId>
- <artifactId>gt-main</artifactId>
- <version>${geotools.version}</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.geotools</groupId>
- <artifactId>gt-arcgrid</artifactId>
- <version>${geotools.version}</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
-<!-- <dependency>-->
-<!-- <groupId>org.slf4j</groupId>-->
-<!-- <artifactId>slf4j-log4j12</artifactId>-->
-<!-- <version>1.5.11</version>-->
-<!-- <type>jar</type>-->
-<!-- <scope>compile</scope>-->
-<!-- </dependency>-->
-
- <dependency>
- <!-- Logging with log4j. Die MVN dependency fuer 1.2.15 ist defekt. downgraded
- to 1.2.14 http://jira.codehaus.org/browse/MEV-649 -->
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.14</version>
- </dependency>
-
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.8.2</version>
- <type>jar</type>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>colt</groupId>
- <artifactId>colt</artifactId>
- <version>1.2.0</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>javax.media</groupId>
- <artifactId>jai_core</artifactId>
- <version>1.1.3</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>1.4</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>net.jini</groupId>
- <artifactId>jini-ext</artifactId>
- <version>2.1</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>com.miglayout</groupId>
- <artifactId>miglayout</artifactId>
- <version>3.7.3</version>
- <classifier>swing</classifier>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>org.jdom</groupId>
- <artifactId>jdom</artifactId>
- <version>1.1</version>
- </dependency>
-
- <dependency>
- <groupId>jfree</groupId>
- <artifactId>jcommon</artifactId>
- <version>1.0.15</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <!-- Fuer Sonderzeichenbehandlung -->
- <groupId>ant-contrib</groupId>
- <artifactId>ant-contrib</artifactId>
- <version>1.0b3</version>
- <type>jar</type>
- <scope>provided</scope>
- </dependency>
-
- <dependency>
- <!-- Fuer Sonderzeichenbehandlung -->
- <groupId>ant</groupId>
- <artifactId>ant-nodeps</artifactId>
- <version>1.6.5</version>
- <scope>provided</scope>
- </dependency>
-
- <dependency>
- <!-- Fuer Sonderzeichenbehandlung -->
- <groupId>com.sun</groupId>
- <artifactId>tools</artifactId>
- <version>1.6.0</version>
- <scope>system</scope>
- <systemPath>${java.home}/../lib/tools.jar</systemPath>
- </dependency>
-
- <dependency>
- <groupId>org.geotools.jdbc</groupId>
- <artifactId>gt-jdbc-postgis</artifactId>
- <version>${geotools.version}</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <groupId>commons-cli</groupId>
- <artifactId>commons-cli</artifactId>
- <version>1.2</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
-
- <dependency>
- <!-- Testen fuer Olli -->
- <groupId>net.sourceforge.jexcelapi</groupId>
- <artifactId>jxl</artifactId>
- <version>2.6.12</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <!-- Testen fuer Olli -->
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>3.7</version>
- <type>jar</type>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
-
- <build>
-
- <sourceDirectory>src</sourceDirectory>
- <testSourceDirectory>src_junit</testSourceDirectory>
- <testResources>
- <testResource>
- <directory>src_junit</directory>
- <filtering>false</filtering>
- <excludes>
- <exclude>**/*.java</exclude>
- <exclude>**/*.svn*</exclude>
- <exclude>**/*.cvs</exclude>
- <exclude>**/*~</exclude>
- <exclude>**/Thumbs.db</exclude>
- </excludes>
- </testResource>
-
- <testResource>
- <directory>testresources</directory>
- <filtering>false</filtering>
- <excludes>
- <exclude>**/*.java</exclude>
- <exclude>**/*.svn*</exclude>
- <exclude>**/*.cvs</exclude>
- <exclude>**/*~</exclude>
- <exclude>**/Thumbs.db</exclude>
- </excludes>
- </testResource>
-
- </testResources>
-
- <!-- <outputDirectory>classes</outputDirectory> -->
- <!-- <testOutputDirectory>test-classes</testOutputDirectory> -->
- <!-- <directory>dist</directory> -->
-
- <resources>
- <resource>
- <directory>src</directory>
- <filtering>false</filtering>
- <excludes>
- <exclude>**/*.html</exclude>
- <exclude>**/*.java</exclude>
- <exclude>**/*.svn*</exclude>
- <exclude>**/*.cvs</exclude>
- <exclude>**/*~</exclude>
- <exclude>**/Thumbs.db</exclude>
- </excludes>
- </resource>
- </resources>
-
- <plugins>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.3.1</version>
- <executions>
- <execution>
- <goals>
- <goal>test-jar</goal>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-resources-plugin</artifactId>
- <version>2.4.2</version>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>2.1.1</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>2.2</version>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- <excludes>
- <exclude>**/.svn</exclude> <!-- ??? -->
- </excludes>
- </configuration>
- </plugin>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-eclipse-plugin</artifactId>
- <version>2.8</version>
- <configuration>
- <downloadSources>true</downloadSources>
- <downloadJavadocs>false</downloadJavadocs>
- </configuration>
- </plugin>
-
-
-
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>1.3</version>
-
- <executions>
- <execution>
- <phase>compile</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
-
- <tasks>
- <taskdef resource="net/sf/antcontrib/antlib.xml">
- <classpath refid="maven.dependency.classpath" />
- </taskdef>
-
- <typedef name="native2ascii"
- classname="org.apache.tools.ant.taskdefs.optional.Native2Ascii">
- <classpath refid="maven.dependency.classpath" />
- </typedef>
-
- <for param="file"
- description="Alle .properties nach .propertieNative umbenennen">
- <path>
- <fileset dir="src" includes="**/*.properties" />
- </path>
- <sequential>
- <move file="@{file}" overwrite="true" tofile="@{file}Native"
- verbose="false" preservelastmodified="true" />
- </sequential>
- </for>
-
- <native2ascii encoding="UTF8" src="src"
- includes="**/*.propertiesNative" dest="src" ext=".properties" />
-
- <for param="file">
- <path>
- <fileset dir="src" includes="**/*.propertiesNative" />
- </path>
- <sequential>
- <delete file="@{file}" quiet="true" />
- </sequential>
- </for>
-
- </tasks>
- </configuration>
- </execution>
- </executions>
- </plugin>
-
- </plugins>
-
- </build>
-
-
- <repositories>
-
- <repository>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- <id>central</id>
- <name>libs-releases</name>
- <url>http://artifactory.wikisquare.de/artifactory/libs-releases</url>
- </repository>
-
- <repository>
- <snapshots />
- <id>snapshots</id>
- <name>libs-snapshots</name>
- <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots
- </url>
- </repository>
-
- </repositories>
-
- <distributionManagement>
-
- <repository>
- <id>artifactory.wikisquare.de</id>
- <name>artifactory.wikisquare.de-releases</name>
- <url>http://artifactory.wikisquare.de/artifactory/libs-releases-local
- </url>
- </repository>
-
- <snapshotRepository>
- <id>artifactory.wikisquare.de</id>
- <name>artifactory.wikisquare.de-snapshots</name>
- <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots-local
- </url>
- </snapshotRepository>
-
- </distributionManagement>
- <profiles>
- <profile>
- <id>resourceOperationRemove</id>
- <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
- the build will remove any lines in the resource bundes that are tagged with
- REMOVEME_ -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <version>1.2</version>
- <executions>
- <execution>
- <phase>generate-sources</phase>
- <goals>
- <goal>java</goal>
- </goals>
- <configuration>
- <mainClass>schmitzm.lang.ResourceProviderOperator</mainClass>
- <arguments>
- <argument>-s</argument>
- <argument>${project.build.directory}/../src</argument>
- <argument>-b</argument>
- <argument>schmitzm.geotools.gui.resource.locales.GTResourceBundle;schmitzm.swing.resource.locales.SwingResourceBundle;schmitzm.geotools.feature.resource.locales.FeatureResourceBundle;schmitzm.jfree.resource.locales.JFreeResourceBundle;schmitzm.lang.resource.locales.LangResourceBundle;schmitzm.mail.resource.locales.MailResourceBundle;schmitzm.data.resource.locales.DataResourceBundle
- </argument>
- </arguments>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
-
-</project>
Deleted: trunk/readme.txt
===================================================================
--- trunk/readme.txt 2011-01-26 13:46:20 UTC (rev 1383)
+++ trunk/readme.txt 2011-01-26 14:39:41 UTC (rev 1384)
@@ -1,78 +0,0 @@
-==============================================================
-=== SCHMITZM README (2010-02-10, Martin Schmitz) ===
-=== ===
-=== http://wald.intevation.org/projects/xulu/ ===
-=== http://wald.intevation.org/projects/schmitzm/ ===
-==============================================================
-
-This file contains some informations ...
-
-(1) about the dependencies of the SCHMITZM library
-(2) about localization in SCHMITZM
-
------------------------------------------------------------
-(1) Dependencies to other libraries
------------------------------------------------------------
-Because SCHMITZM is not an executable application, but an
-library for experienced programmers, I renounced to put all
-necessary libraries to the project.
-
-I expect that the SCHMITZM developer/builder is able to include
-the following dependencies to its individual Java (Eclipse)
-project:
- - JRE/JDK 1.6 (http://java.sun.com)
- - JAI plus ImageIO (if not already included in your JRE/JDK)
- because gt2-2.6.0 already includes jai_codec-1.1.3.jar and
- jai_imageio-1.1.jar it is recommended only to include:
- - clipwrapper_jiio.jar
- - jai_core.jar
- - mlibwrapper_jai.jar
- - Geotools 2.6.1 (http://www.geotools.org)
- - jFreeChart 1.0.13 (http://www.jfree.org/jfreechart/)
- - Log4j 1.2.14 (http://logging.apache.org/log4j/)
- - JINI (http://java.sun.com/products/jini/)
- - Colt (http://acs.lbl.gov/~hoschek/colt/)
-
-Only the following individual JARs are included in the SCHMITZM
-project (lib folder) because of several reasons. For middle term
-it is planned to remove them:
- - gt-shapefile-renderer-2.6-SNAPSHOT.jar
- >> ShapefileRenderer is still needed, but unsupported in
- gt2-2.6.1. When GT has included all its advantages
- in StreamingRenderer the ShapefileRenderer will be
- removed from SCHMITZM
-
-
-An example for an Eclipse project can be found in "defaults"
-folder. But please DO NOT USE, MODIFY AND COMMIT THIS FILES,
-but instead copy first '.classpass' and '.project' to SCHMITZM
-root folder!!
-
-
------------------------------------------------------------
-(2) Localization in SCHMITZM library
------------------------------------------------------------
-Localization is done by the SCHMITZM class ResourceProvider, which is
-an extension to standard Java ResourceBundle.
-For example ResourceProvider.getString(..) allowes to specify
-additional parameters to fill wildcards ${0}, ${1}, ${2}, ... in the
-localization strings (see ResourceProvider class for more details).
-
-The SCHMITZM library contains resource bundles in the following
-packages, each located in sub-folders <package>/resource/locales:
-
-- schmitzm.data -> DataResourceBundle
-- schmitzm.geotools.feature -> FeatureResourceBundle
-- schmitzm.geotools.gui -> GTResourceBundle
-- schmitzm.lang -> LangResourceBundle
-- schmitzm.swing -> SwingResourceBundle
-- skrueger.swing -> SwingResourceBundle
-
-If you want SCHMITZM to provide an additional language, you have to
-translate all of these ResourceBundles.
-
-
-===========================================================
-http://wald.intevation.org/projects/xulu/
-http://wald.intevation.org/projects/schmitzm/
-===========================================================
Deleted: trunk/release.txt
===================================================================
--- trunk/release.txt 2011-01-26 13:46:20 UTC (rev 1383)
+++ trunk/release.txt 2011-01-26 14:39:41 UTC (rev 1384)
@@ -1,58 +0,0 @@
-===============================================================
-=== SCHMITZM RELEASE NOTES (2010-06-07, Martin Schmitz) ===
-=== ===
-=== http://wald.intevation.org/projects/xulu/ ===
-=== http://wald.intevation.org/projects/schmitzm/ ===
-===============================================================
-
-SCHMITZM 2.3-SNAPSHOT
---------------
-This trunk bases on version 2.3-SNAPSHOT and contains the next
-developments and enhancements.
-
-
-SCHMITZM 2.0 (rev 685, 2010-02-10)
-----------------------------------
-This version contains the last version of branch RC1.
-It is the first stable SCHMITZM version which bases on
-Geotools 2.6.1.
-
-
-SCHMITZM 2.0-RC2
-----------------
-This branch bases on RC1 and includes developments and
-extensions to make all parts stable especially for XULU.
-
-
-SCHMITZM 2.0-RC1
-----------------
-This branch already bases on Geotools 2.6.x but is not
-stable in all parts (e.g. JEditorPane to create FeatureCollections).
-For GeoPublisher 1.3 the RC1 branch is stable version, which remains
-fixed, except some bugfixes.
-No more developments are included in this branch to avoid conflicts
-with GeoPublisher 1.3.
-
-
-SCHMITZM 1.0-gt2-2.6
---------------------
-This branch bases on version 1.0 and contains the "tries"
-to switch to Geotools 2.6.
-Note: This branch is not stable!!!
-
-
-SCHMITZM 1.1 (rev 682)
-----------------------
-This version contains the last version using Geotools 2.4.5.
-After that the trunk is switched to Geotools 2.6.1.
-The next release will be SCHMITZM 2.0.
-
-
-SCHMITZM 1.0 (rev 314)
-----------------------
-This first version contains the latest "stable" version using
-Geotools 2.4.5.
-After that we are trying to switch to Geotools 2.6. Because
-this will be another big step, there will be no (many)
-subversions 1.x (maybe v1.1 with some bug fixes).
-The next release directly will be SCHMITZM 2.0.
More information about the Schmitzm-commits
mailing list