-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
59 lines (57 loc) · 2.13 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.hibernatespatial</groupId>
<artifactId>hibernate-spatial</artifactId>
<parent>
<groupId>org.hibernatespatial</groupId>
<artifactId>hibernate-spatial-maven</artifactId>
<version>1.1.1-SNAPSHOT</version>
<relativePath>../hibernate-spatial-maven</relativePath>
</parent>
<name>Hibernate Spatial Core</name>
<url>http://www.hibernatespatial.org/hibernate-spatial</url>
<description>
Hibernate Spatial Core classes, interfaces and Service Provider
Interface
</description>
<packaging>jar</packaging>
<build>
<plugins>
<!-- 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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/TestData.java</exclude>
<exclude>**/TestDataElement.java</exclude>
<exclude>**/TestDataReader.java</exclude>
<exclude>**/TestFeature.java</exclude>
<exclude>**/TestSupport.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<site>
<id>Hibernate Spatial site</id>
<name>Hibernate Spatial</name>
<url>
scp://www.hibernatespatial.org/var/www/www2.hibernatespatial.org/hibernate-spatial
</url>
</site>
</distributionManagement>
</project>