Subversion Repositories hibernate-spatial

Rev

Rev 28 | Rev 39 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?xml version="1.0" encoding="UTF-8"?>
<!--  $Id: pom.xml 34 2007-08-13 09:14:30Z pieterdg $ -->
<project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>com.cadrie.hibernate</groupId>
        <artifactId>hibernate-spatial-maven</artifactId>
        <version>1.0-SNAPSHOT</version>
        <name>Hibernate Spatial Extension</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.cadrie.com/projects/majas-hibernate/</url>
        <packaging>pom</packaging>
        <modules>
                <module>../hibernate-spatial</module>
                <module>../hibernate-spatial-postgis</module>
                <module>../hibernate-spatial-oracle</module>
        </modules>
        <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:https://www.cadrie.com/svn/majas/trunk/hibernate-spatial-maven
                </connection>
                <developerConnection>
                        scm:svn:https://www.cadrie.com/svn/majas/trunk/hibernate-spatial-maven
                </developerConnection>
                <url>
                        https://www.cadrie.com/svn/majas/trunk/hibernate-spatial-maven
                </url>
        </scm>
        <mailingLists>
                <mailingList>
                        <name>MAJAS-dev</name>
                        <subscribe>
                                http://www.cadrie.com/mailman/listinfo/majas-dev
                        </subscribe>
                        <unsubscribe>
                                http://www.cadrie.com/mailman/listinfo/majas-dev
                        </unsubscribe>

                        <archive>
                                http://www.cadrie.com/pipermail/majas-dev/
                        </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>Caffeine-Driven Enterprises</name>
                <url>http://www.cadrie.com</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.7.1</version>
                </dependency>
                <dependency>
                        <groupId>junit</groupId>
                        <artifactId>junit</artifactId>
                        <version>4.1</version>
                        <scope>test</scope>
                </dependency>
                <dependency>
                        <groupId>commons-logging</groupId>
                        <artifactId>commons-logging</artifactId>
                        <version>1.0.4</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>MAJAS Hibernate Spatial site</id>
                        <name>Hibernate Spatial</name>
                        <url>
                                scp://www.cadrie.com/var/www/www.cadrie.com/htdocs/projects/hibernate-spatial/
                        </url>
                </site>

                <!-- use the following if you're not using a snapshot version. -->
                <repository>
                        <id>cadrie</id>
                        <name>CaDriE repository</name>
                        <url>
                                scp://www.cadrie.com/var/www/www.cadrie.com/htdocs/repository/
                        </url>
                </repository>
                <!-- use the following if you ARE using a snapshot version. -->
                <snapshotRepository>
                        <id>cadrie</id>
                        <name>CaDriE repository</name>
                        <url>
                                scp://www.cadrie.com/var/www/www.cadrie.com/htdocs/repository/
                        </url>
                </snapshotRepository>

        </distributionManagement>
        <developers>
                <developer>
                        <id>maesenka</id>
                        <name>Karel Maesen</name>
                        <email>karel.maesen@cadrie.com</email>
                        <roles>
                                <role>Architect</role>
                                <role>Lead Developer</role>
                        </roles>
                </developer>
                <developer>
                        <id>jandm</id>
                        <name>Jan De Moerlose</name>
                        <email>jan.demoerlose@cadrie.com</email>
                        <roles>
                                <role>Developer</role>
                        </roles>
                </developer>
                <developer>
                        <id>pieterdg</id>
                        <name>Pieter De Graef</name>
                        <email>pieter.degraef@cadrie.com</email>
                        <roles>
                                <role>Developer</role>
                        </roles>
                </developer>
        </developers>


</project>