Subversion Repositories hibernate-spatial

Compare Revisions

Ignore whitespace Rev 106 → Rev 107

/tags/1.0-M2/hibernate-spatial-maven/header.txt
New file
0,0 → 1,28
/**
* $Id$
*
* This file is part of Hibernate Spatial, an extension to the
* hibernate ORM solution for geographic data.
*
* Copyright © 2007 Geovise BVBA
* Copyright © 2007 K.U. Leuven LRD, Spatial Applications Division, Belgium
*
* This work was partially supported by the European Commission,
* under the 6th Framework Programme, contract IST-2-004688-STP.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* For more information, visit: http://www.hibernatespatial.org/
*/
/tags/1.0-M2/hibernate-spatial-maven/src/site/site.xml
New file
0,0 → 1,43
<?xml version="1.0" encoding="UTF-8"?>
<project name="Hibernate Spatial">
<bannerLeft>
<name>Hibernate Spatial</name>
<href>http://www.hibernatespatial.org/</href>
</bannerLeft>
 
<!--
<bannerRight>
<name>GEOVISE</name>
<src>http://www.geovise.com/</src>
</bannerRight>
-->
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-default-skin</artifactId>
</skin>
 
<publishDate format="yyyy MMM dd" />
<body>
<links>
<item name="GEOVISE" href="http://www.geovise.com/"/>
<item name="Hibernate Spatial" href="http://www.hibernatespatial.org/"/>
</links>
 
<head>
 
</head>
 
<!-- <menu name="Hibernate Spatial">
<item name="What is Hibernate Spatial?" href="what-is-hibernate-spatial.html"/>
</menu>
-->
<menu ref="modules" inherit="bottom"/>
<menu ref="reports" inherit="bottom"/>
 
</body>
</project>
/tags/1.0-M2/hibernate-spatial-maven/pom.xml
New file
0,0 → 1,244
<?xml version="1.0" encoding="UTF-8"?>
<!-- $Id$ -->
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.hibernatespatial</groupId>
<artifactId>hibernate-spatial-maven</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Hibernate Spatial</name>
<description>
This is the Maven parent project for all Hibernate Spatial
Extension Modules. The main module is Hibernate Spatial, which
provides the core extension classes. The other modules are the
dialect providers for the Oracle 10g and Postgresql geographic
data support. For more information on how to use Spatial
Hibernate, go to the Hibernate Spatial site.
</description>
<url>http://www.hibernatespatial.org/maven</url>
<packaging>pom</packaging>
<modules>
<module>../hibernate-spatial</module>
<module>../hibernate-spatial-postgis</module>
<module>../hibernate-spatial-oracle</module>
<module>../hibernate-spatial-mysql</module>
</modules>
<repositories>
<repository>
<id>GeoTools repo</id>
<url>http://maven.geotools.fr/repository</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
 
<!-- We skip the unit tests when building and packaging because it
it requires specific test set-up.
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<!-- CaDriE developed plugin for managing header files
<plugin>
<groupId>com.cadrie</groupId>
<artifactId>maven-header-plugin</artifactId>
<configuration>
<headerFile>header.txt</headerFile>
</configuration>
<version>1.0</version>
</plugin>
-->
</plugins>
</build>
<scm>
<connection>
scm:svn:http://www.hibernatespatial.org/svn/hibernate-spatial/trunk/hibernate-spatial-maven
</connection>
<developerConnection>
scm:svn:https://intra.geovise.com/svn/hibernate-spatial/trunk/hibernate-spatial-maven
</developerConnection>
<url>
<![CDATA[ http://www.hibernatespatial.org/websvn/listing.php?repname=hibernate-spatial&path=/trunk/${project.artifactId}/rev=0&sc=0]]>
</url>
</scm>
<mailingLists>
 
<mailingList>
<name>hibernatespatial-dev</name>
<subscribe>
http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-dev
</subscribe>
<unsubscribe>
http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-dev
</unsubscribe>
<archive>
http://www.hibernatespatial.org/pipermail/hibernatespatial-dev/
</archive>
</mailingList>
 
<mailingList>
<name>hibernatespatial-users</name>
<subscribe>
http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-users
</subscribe>
<unsubscribe>
http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-users
</unsubscribe>
 
<archive>
http://www.hibernatespatial.org/pipermail/hibernatespatial-users/
</archive>
</mailingList>
 
<mailingList>
<name>hibernatespatial-announce</name>
<subscribe>
http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-announce
</subscribe>
<unsubscribe>
http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-announce
</unsubscribe>
 
<archive>
http://www.hibernatespatial.org/pipermail/hibernatespatial-announce
</archive>
</mailingList>
</mailingLists>
 
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>hibernatespatial.org</name>
<url>http://www.hibernatespatial.org/</url>
</organization>
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<version>3.2.2.ga</version>
</dependency>
<dependency>
<groupId>com.vividsolutions</groupId>
<artifactId>jts</artifactId>
<version>1.8</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.14</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jboss</groupId>
<artifactId>javassist</artifactId>
<version>3.6.ga</version>
</dependency>
 
</dependencies>
 
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<!-- Keep javadoc in modules.
<configuration>
<aggregate>true</aggregate>
</configuration>
-->
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
-->
</plugins>
</reporting>
 
<distributionManagement>
<site>
<id>Hibernate Spatial site</id>
<name>Hibernate Spatial</name>
<url>
scp://www.hibernatespatial.org/var/www/www.hibernatespatial.org/
</url>
</site>
 
<!-- use the following if you're not using a snapshot version. -->
<repository>
<id>hibernatespatial</id>
<name>Hibernate Spatial Maven Repo</name>
<url>
scp://www.hibernatespatial.org/var/maven/repository/
</url>
</repository>
<!-- use the following if you are using a snapshot version. -->
<snapshotRepository>
<id>hibernatespatial</id>
<name>Hibernate Spatial Maven Repo</name>
<url>
scp://www.hibernatespatial.org/var/maven/repository/
</url>
</snapshotRepository>
 
</distributionManagement>
<developers>
<developer>
<id>maesenka</id>
<name>Karel Maesen</name>
<email>karel@geovise.com</email>
<roles>
<role>Project Lead</role>
<role>Committer</role>
</roles>
</developer>
<developer>
<id>jandm</id>
<name>Jan De Moerlose</name>
<email>janDM@dfc.be</email>
<roles>
<role>Contributor</role>
</roles>
</developer>
<developer>
<id>pieterdg</id>
<name>Pieter De Graef</name>
<email>pieter@dfc.be</email>
<roles>
<role>Contributor</role>
</roles>
</developer>
<developer>
<id>AcreeTom</id>
<name>Tom Acree</name>
<email></email>
<roles>
<role>Contributor</role>
</roles>
</developer>
</developers>
 
 
</project>
Property changes:
Added: svn:keywords
+ Id