| 20,11 → 20,12 |
| <packaging>pom</packaging> |
| <modules> |
| <module>../hibernate-spatial</module> |
| <module>../test-suite</module> |
| <module>../hibernate-spatial-postgis</module> |
| <module>../hibernate-spatial-oracle</module> |
| <module>../hibernate-spatial-mysql</module> |
| <module>../hibernate-spatial-sqlserver</module> |
| <module>../hibernate-spatial-h2-geodb</module> |
| <!-- <module>../hibernate-spatial-oracle</module> --> |
| <!-- <module>../hibernate-spatial-mysql</module> --> |
| <!-- <module>../hibernate-spatial-sqlserver</module> --> |
| <!-- <module>../hibernate-spatial-h2-geodb</module> --> |
| </modules> |
| <repositories> |
| <repository> |
| 45,10 → 46,9 |
| <target>1.5</target> |
| </configuration> |
| </plugin> |
| |
| <!-- We skip the unit tests when building and packaging because it |
| it requires specific test set-up. |
| --> |
| <!--We skip the unit tests when building and packaging because it |
| it requires specific testsuite-suite set-up. |
| --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| 56,7 → 56,7 |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| <!-- generate source artefacts --> |
| <!--generate source artefacts --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-source-plugin</artifactId> |
| 71,9 → 71,22 |
| </executions> |
| </plugin> |
| |
| <!-- this ensures that the common testsuite-suite cases are available for providers --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <executions> |
| <execution> |
| <goals> |
| <goal>test-jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </build> |
| |
| <scm> |
| <connection> |
| scm:svn:http://www.hibernatespatial.org/svn/hibernate-spatial/trunk/hibernate-spatial-maven |
| 154,6 → 167,11 |
| <version>3.6.0-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>org.hibernate</groupId> |
| <artifactId>hibernate-testing</artifactId> |
| <version>3.6.0-SNAPSHOT</version> |
| </dependency> |
| <dependency> |
| <groupId>com.vividsolutions</groupId> |
| <artifactId>jts</artifactId> |
| <version>1.10</version> |
| 179,7 → 197,7 |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| <version>1.4.2</version> |
| <version>1.6.1</version> |
| <scope>test</scope> |
| </dependency> |
| |
| 200,6 → 218,67 |
| |
| </dependencies> |
| |
| <profiles> |
| <profile> |
| <id>automated-unit-test</id> |
| <build> |
| <testResources> |
| <testResource> |
| <filtering>false</filtering> |
| <directory>src/test/java</directory> |
| <includes> |
| <include>**/*.xml</include> |
| </includes> |
| </testResource> |
| <testResource> |
| <filtering>true</filtering> |
| <directory>src/test/resources</directory> |
| </testResource> |
| </testResources> |
| </build> |
| </profile> |
| |
| <profile> |
| <id>postgresql83</id> |
| <dependencies> |
| <dependency> |
| <groupId>postgresql</groupId> |
| <artifactId>postgresql</artifactId> |
| <version>8.4-701.jdbc3</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.postgis</groupId> |
| <artifactId>postgis-jdbc</artifactId> |
| <version>[1.1.6,)</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>hibernate-spatial-postgis</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>${project.groupId}</groupId> |
| <artifactId>hibernate-spatial-postgis</artifactId> |
| <version>${project.version}</version> |
| <classifier>tests</classifier> |
| </dependency> |
| </dependencies> |
| <properties> |
| <db.dialect>org.hibernatespatial.postgis.PostgisDialect</db.dialect> |
| <jdbc.driver>org.postgresql.Driver</jdbc.driver> |
| <!--<jdbc.url>jdbc:postgresql://vmg03.mw.lab.eng.bos.redhat.com:5432:hibbrtru</jdbc.url>--> |
| <jdbc.url>jdbc:postgresql://localhost:5432:hibbrtru</jdbc.url> |
| <jdbc.user>hibbrtru</jdbc.user> |
| <jdbc.pass>hibbrtru</jdbc.pass> |
| <jdbc.isolation/> |
| </properties> |
| </profile> |
| |
| </profiles> |
| |
| |
| <reporting> |
| <plugins> |
| <plugin> |