Subversion Repositories hibernate-spatial

Rev

Rev 40 | Rev 70 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 maesenka 1
<?xml version="1.0" encoding="UTF-8"?>
10 maesenka 2
<!--  $Id: pom.xml 55 2007-11-12 21:22:33Z maesenka $ -->
9 maesenka 3
<project>
4
	<modelVersion>4.0.0</modelVersion>
55 maesenka 5
	<groupId>org.hibernatespatial</groupId>
34 pieterdg 6
	<artifactId>hibernate-spatial-maven</artifactId>
23 maesenka 7
	<version>1.0-SNAPSHOT</version>
55 maesenka 8
	<name>Hibernate Spatial</name>
10 maesenka 9
	<description>
10
		This is the Maven parent project for all Hibernate Spatial
11
		Extension Modules. The main module is Hibernate Spatial, which
12
		provides the core extension classes. The other modules are the
13
		dialect providers for the Oracle 10g and Postgresql geographic
14
		data support. For more information on how to use Spatial
15
		Hibernate, go to the Hibernate Spatial site.
16
	</description>
39 maesenka 17
	<url>http://www.hibernatespatial.org/maven</url>
9 maesenka 18
	<packaging>pom</packaging>
19
	<modules>
20
		<module>../hibernate-spatial</module>
21
		<module>../hibernate-spatial-postgis</module>
22
		<module>../hibernate-spatial-oracle</module>
55 maesenka 23
	 	<module>../hibernate-spatial-mysql</module>
9 maesenka 24
	</modules>
10 maesenka 25
	<build>
26
		<plugins>
23 maesenka 27
			<plugin>
28
				<artifactId>maven-compiler-plugin</artifactId>
29
				<configuration>
30
					<source>1.5</source>
31
					<target>1.5</target>
32
				</configuration>
33
			</plugin>
34
 
10 maesenka 35
			<!--  We skip the unit tests when building and packaging because it
36
				it requires specific test set-up.
37
			-->
38
			<plugin>
39
				<groupId>org.apache.maven.plugins</groupId>
40
				<artifactId>maven-surefire-plugin</artifactId>
41
				<configuration>
42
					<skip>true</skip>
43
				</configuration>
44
			</plugin>
45
			<!--  CaDriE developed plugin for managing header files -->
46
			<plugin>
47
				<groupId>com.cadrie</groupId>
48
				<artifactId>maven-header-plugin</artifactId>
49
				<configuration>
50
					<headerFile>header.txt</headerFile>
51
				</configuration>
34 pieterdg 52
				<version>1.0</version>
10 maesenka 53
			</plugin>
54
		</plugins>
55
	</build>
9 maesenka 56
	<scm>
10 maesenka 57
		<connection>
40 maesenka 58
			scm:svn:http://www.hibernatespatial.org/svn/hibernate-spatial/trunk/hibernate-spatial-maven
10 maesenka 59
		</connection>
60
		<developerConnection>
39 maesenka 61
			scm:svn:https://intra.geovise.com/svn/hibernate-spatial/trunk/hibernate-spatial-maven
10 maesenka 62
		</developerConnection>
55 maesenka 63
		<url>
64
			<![CDATA[ http://www.hibernatespatial.org/websvn/listing.php?repname=hibernate-spatial&path=/trunk/${project.artifactId}/rev=0&sc=0]]>
65
		</url>
9 maesenka 66
	</scm>
10 maesenka 67
	<mailingLists>
40 maesenka 68
 
10 maesenka 69
		<mailingList>
39 maesenka 70
			<name>hibernatespatial-dev</name>
10 maesenka 71
			<subscribe>
39 maesenka 72
				http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-dev
10 maesenka 73
			</subscribe>
74
			<unsubscribe>
39 maesenka 75
				http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-dev
10 maesenka 76
			</unsubscribe>
77
			<archive>
39 maesenka 78
				http://www.hibernatespatial.org/pipermail/hibernatespatial-dev/
10 maesenka 79
			</archive>
80
		</mailingList>
40 maesenka 81
 
39 maesenka 82
		<mailingList>
83
			<name>hibernatespatial-users</name>
84
			<subscribe>
85
				http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-users
86
			</subscribe>
87
			<unsubscribe>
88
				http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-users
89
			</unsubscribe>
90
 
91
			<archive>
92
				http://www.hibernatespatial.org/pipermail/hibernatespatial-users/
93
			</archive>
94
		</mailingList>
40 maesenka 95
 
39 maesenka 96
		<mailingList>
97
			<name>hibernatespatial-announce</name>
98
			<subscribe>
99
				http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-announce
100
			</subscribe>
101
			<unsubscribe>
102
				http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-announce
103
			</unsubscribe>
104
 
105
			<archive>
106
				http://www.hibernatespatial.org/pipermail/hibernatespatial-announce
107
			</archive>
108
		</mailingList>
10 maesenka 109
	</mailingLists>
40 maesenka 110
 
9 maesenka 111
	<licenses>
112
		<license>
10 maesenka 113
			<name>GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1</name>
114
			<url>http://www.gnu.org/licenses/lgpl.txt</url>
9 maesenka 115
			<distribution>repo</distribution>
116
		</license>
117
	</licenses>
118
	<organization>
39 maesenka 119
		<name>hibernatespatial.org</name>
120
		<url>http://www.hibernatespatial.org/</url>
55 maesenka 121
	</organization>
122
	<dependencies>
123
		<dependency>
124
			<groupId>org.hibernate</groupId>
125
			<artifactId>hibernate</artifactId>
126
			<version>3.2.2.ga</version>
9 maesenka 127
		</dependency>
128
		<dependency>
55 maesenka 129
			<groupId>com.vividsolutions</groupId>
130
			<artifactId>jts</artifactId>
131
			<version>1.8</version>
132
		</dependency>
133
		<dependency>
9 maesenka 134
			<groupId>junit</groupId>
135
			<artifactId>junit</artifactId>
136
			<version>4.1</version>
10 maesenka 137
			<scope>test</scope>
138
		</dependency>
139
		<dependency>
55 maesenka 140
			<groupId>log4j</groupId>
141
			<artifactId>log4j</artifactId>
142
			<version>1.2.14</version>
143
			<scope>test</scope>
144
		</dependency>
145
 
9 maesenka 146
	</dependencies>
10 maesenka 147
 
148
	<reporting>
149
		<plugins>
150
			<plugin>
151
				<groupId>org.apache.maven.plugins</groupId>
152
				<artifactId>maven-javadoc-plugin</artifactId>
153
				<!--  Keep javadoc in modules.
154
					<configuration>
155
					<aggregate>true</aggregate>
156
					</configuration>
157
				-->
158
			</plugin>
159
			<!--
160
				<plugin>
161
				<groupId>org.apache.maven.plugins</groupId>
162
				<artifactId>maven-checkstyle-plugin</artifactId>
163
				</plugin>
164
			-->
165
		</plugins>
166
	</reporting>
167
 
9 maesenka 168
	<distributionManagement>
169
		<site>
40 maesenka 170
			<id>Hibernate Spatial site</id>
9 maesenka 171
			<name>Hibernate Spatial</name>
10 maesenka 172
			<url>
39 maesenka 173
				scp://www.hibernatespatial.org/var/www/www.hibernatespatial.org/
10 maesenka 174
			</url>
9 maesenka 175
		</site>
28 maesenka 176
 
177
		<!-- use the following if you're not using a snapshot version. -->
178
		<repository>
40 maesenka 179
			<id>hibernatespatial</id>
180
			<name>Hibernate Spatial Maven Repo</name>
28 maesenka 181
			<url>
40 maesenka 182
				scp://www.hibernatespatial.org/var/maven/repository/
28 maesenka 183
			</url>
184
		</repository>
40 maesenka 185
		<!-- use the following if you are using a snapshot version. -->
28 maesenka 186
		<snapshotRepository>
40 maesenka 187
			<id>hibernatespatial</id>
188
			<name>Hibernate Spatial Maven Repo</name>
28 maesenka 189
			<url>
40 maesenka 190
				scp://www.hibernatespatial.org/var/maven/repository/
28 maesenka 191
			</url>
192
		</snapshotRepository>
193
 
9 maesenka 194
	</distributionManagement>
195
	<developers>
196
		<developer>
10 maesenka 197
			<id>maesenka</id>
198
			<name>Karel Maesen</name>
39 maesenka 199
			<email>karel@geovise.com</email>
9 maesenka 200
			<roles>
39 maesenka 201
				<role>Project Lead</role>
202
				<role>Committer</role>
9 maesenka 203
			</roles>
204
		</developer>
205
		<developer>
10 maesenka 206
			<id>jandm</id>
207
			<name>Jan De Moerlose</name>
39 maesenka 208
			<email>janDM@dfc.be</email>
9 maesenka 209
			<roles>
39 maesenka 210
				<role>Contributor</role>
9 maesenka 211
			</roles>
212
		</developer>
10 maesenka 213
		<developer>
9 maesenka 214
			<id>pieterdg</id>
215
			<name>Pieter De Graef</name>
39 maesenka 216
			<email>pieter@dfc.be</email>
9 maesenka 217
			<roles>
39 maesenka 218
				<role>Contributor</role>
9 maesenka 219
			</roles>
220
		</developer>
55 maesenka 221
		<developer>
222
			<id>AcreeTom</id>
223
			<name>Tom Acree</name>
224
			<email></email>
225
			<roles>
226
				<role>Contributor</role>
227
			</roles>
228
		</developer>
10 maesenka 229
	</developers>
230
 
28 maesenka 231
 
9 maesenka 232
</project>