Quick Search:

View

Revision:

Diff

Diff from 172 to:

Annotations

Annotate by Age | Author | Mixed | None
/fisheye/browse/HibernateSpatial/trunk/hibernate-spatial-maven/pom.xml

Annotated File View

maesenka
9
1 <?xml version="1.0" encoding="UTF-8"?>
maesenka
172
2 <!--
3   ~ $Id: pom.xml 172 2010-03-18 13:38:59Z maesenka $
4   ~
5   ~ This file is part of Hibernate Spatial, an extension to the
6   ~ hibernate ORM solution for geographic data.
7   ~
8   ~ Copyright © 2007-2010 Geovise BVBA
9   ~
10   ~ This library is free software; you can redistribute it and/or
11   ~ modify it under the terms of the GNU Lesser General Public
12   ~ License as published by the Free Software Foundation; either
13   ~ version 2.1 of the License, or (at your option) any later version.
14   ~
15   ~ This library is distributed in the hope that it will be useful,
16   ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
17   ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18   ~ Lesser General Public License for more details.
19   ~
20   ~ You should have received a copy of the GNU Lesser General Public
21   ~ License along with this library; if not, write to the Free Software
22   ~ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23   ~
24   ~ For more information, visit: http://www.hibernatespatial.org/
25   -->
26
maesenka
10
27 <!--  $Id: pom.xml 172 2010-03-18 13:38:59Z maesenka $ -->
maesenka
9
28 <project>
maesenka
172
29     <modelVersion>4.0.0</modelVersion>
30     <groupId>org.hibernatespatial</groupId>
31     <artifactId>hibernate-spatial-maven</artifactId>
32     <version>1.0-SNAPSHOT</version>
33     <name>Hibernate Spatial</name>
34     <description>
35         This is the Maven parent project for all Hibernate Spatial
36         Extension Modules. The main module is Hibernate Spatial, which
37         provides the core extension classes. The other modules are the
38         dialect providers for the Oracle 10g and Postgresql geographic
39         data support. For more information on how to use Spatial
40         Hibernate, go to the Hibernate Spatial site.
41     </description>
42     <url>http://www.hibernatespatial.org/maven</url>
43     <packaging>pom</packaging>
44     <modules>
45         <module>../hibernate-spatial</module>
46         <module>../hibernate-spatial-postgis</module>
47         <module>../hibernate-spatial-oracle</module>
48         <module>../hibernate-spatial-mysql</module>
49         <module>../hibernate-spatial-sqlserver</module>
50     </modules>
51     <repositories>
52         <repository>
53             <id>OSGEO</id>
54             <url>http://download.osgeo.org/webdav/geotools</url>
55         </repository>
56         <repository>
57             <id>JBoss repo</id>
58             <url>http://repository.jboss.com/maven2</url>
59         </repository>
60     </repositories>
61     <build>
62         <plugins>
63             <plugin>
64                 <artifactId>maven-compiler-plugin</artifactId>
65                 <configuration>
66                     <source>1.5</source>
67                     <target>1.5</target>
68                 </configuration>
69             </plugin>
maesenka
23
70
maesenka
172
71             <!--  We skip the unit tests when building and packaging because it
72                    it requires specific test set-up.
73                -->
74             <plugin>
75                 <groupId>org.apache.maven.plugins</groupId>
76                 <artifactId>maven-surefire-plugin</artifactId>
77                 <configuration>
78                     <skip>true</skip>
79                 </configuration>
80             </plugin>
81             <!-- generate source artefacts -->
82             <plugin>
83                 <groupId>org.apache.maven.plugins</groupId>
84                 <artifactId>maven-source-plugin</artifactId>
85                 <executions>
86                     <execution>
87                         <id>attach-sources</id>
88                         <phase>package</phase>
89                         <goals>
90                             <goal>jar</goal>
91                         </goals>
92                     </execution>
93                 </executions>
94             </plugin>
maesenka
40
95
maesenka
172
96         </plugins>
maesenka
40
97
maesenka
172
98     </build>
99     <scm>
100         <connection>
101             scm:svn:http://www.hibernatespatial.org/svn/hibernate-spatial/trunk/hibernate-spatial-maven
102         </connection>
103         <developerConnection>
104             scm:svn:https://intra.geovise.com/svn/hibernate-spatial/trunk/hibernate-spatial-maven
105         </developerConnection>
106         <url>
107             <![CDATA[ http://www.hibernatespatial.org/websvn/listing.php?repname=hibernate-spatial&path=/trunk/${project.artifactId}/rev=0&sc=0]]>
108         </url>
109     </scm>
maesenka
10
110
maesenka
172
111     <issueManagement>
112         <system>JIRA</system>
113         <url>http://www.hibernatespatial.org/jira/browse/HIBSPA</url>
114     </issueManagement>
maesenka
40
115
maesenka
172
116     <mailingLists>
maesenka
39
117
maesenka
172
118         <mailingList>
119             <name>hibernatespatial-dev</name>
120             <subscribe>
121                 http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-dev
122             </subscribe>
123             <unsubscribe>
124                 http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-dev
125             </unsubscribe>
126             <archive>
127                 http://www.hibernatespatial.org/pipermail/hibernatespatial-dev/
128             </archive>
129         </mailingList>
maesenka
40
130
maesenka
172
131         <mailingList>
132             <name>hibernatespatial-users</name>
133             <subscribe>
134                 http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-users
135             </subscribe>
136             <unsubscribe>
137                 http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-users
138             </unsubscribe>
maesenka
55
139
maesenka
172
140             <archive>
141                 http://www.hibernatespatial.org/pipermail/hibernatespatial-users/
142             </archive>
143         </mailingList>
maesenka
10
144
maesenka
172
145         <mailingList>
146             <name>hibernatespatial-announce</name>
147             <subscribe>
148                 http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-announce
149             </subscribe>
150             <unsubscribe>
151                 http://www.hibernatespatial.org/cgi-bin/mailman/listinfo/hibernatespatial-announce
152             </unsubscribe>
maesenka
10
153
maesenka
172
154             <archive>
155                 http://www.hibernatespatial.org/pipermail/hibernatespatial-announce
156             </archive>
157         </mailingList>
158     </mailingLists>
maesenka
28
159
maesenka
172
160     <licenses>
161         <license>
162             <name>GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1</name>
163             <url>http://www.gnu.org/licenses/lgpl.txt</url>
164             <distribution>repo</distribution>
165         </license>
166     </licenses>
167     <organization>
168         <name>hibernatespatial.org</name>
169         <url>http://www.hibernatespatial.org/</url>
170     </organization>
171     <dependencies>
172         <dependency>
173             <groupId>org.hibernate</groupId>
174             <artifactId>hibernate-core</artifactId>
175             <version>3.3.2.GA</version>
176         </dependency>
177         <dependency>
178             <groupId>com.vividsolutions</groupId>
179             <artifactId>jts</artifactId>
180             <version>1.10</version>
181         </dependency>
182         <dependency>
183             <groupId>junit</groupId>
184             <artifactId>junit</artifactId>
185             <version>4.4</version>
186             <scope>test</scope>
187         </dependency>
188         <dependency>
189             <groupId>log4j</groupId>
190             <artifactId>log4j</artifactId>
191             <version>1.2.14</version>
192             <scope>test</scope>
193         </dependency>
194         <dependency>
195             <groupId>javassist</groupId>
196             <artifactId>javassist</artifactId>
197             <version>3.11.0.GA</version>
198         </dependency>
maesenka
28
199
maesenka
172
200         <dependency>
201             <groupId>org.slf4j</groupId>
202             <artifactId>slf4j-log4j12</artifactId>
203             <version>1.4.2</version>
204             <scope>test</scope>
205         </dependency>
maesenka
10
206
maesenka
172
207         <dependency>
208             <groupId>commons-dbcp</groupId>
209             <artifactId>commons-dbcp</artifactId>
210             <scope>test</scope>
211             <version>1.2.2</version>
212         </dependency>
213
214     </dependencies>
215
216     <reporting>
217         <plugins>
218             <!--<plugin>-->
219             <!--<groupId>org.apache.maven.plugins</groupId>-->
220             <!--<artifactId>maven-javadoc-plugin</artifactId>-->
221
222             <!--<configuration>-->
223             <!--<aggregate>true</aggregate>-->
224             <!--</configuration> -->
225
226             <!--</plugin>-->
227             <plugin>
228                 <groupId>org.apache.maven.plugins</groupId>
229                 <artifactId>maven-idea-plugin</artifactId>
230                 <configuration>
231                     <downloadSources>true</downloadSources>
232                     <downloadJavadocs>true</downloadJavadocs>
233                 </configuration>
234             </plugin>
235         </plugins>
236     </reporting>
237
238     <distributionManagement>
239         <site>
240             <id>Hibernate Spatial site</id>
241             <name>Hibernate Spatial</name>
242             <url>
243                 scp://www.hibernatespatial.org/var/www/www.hibernatespatial.org/
244             </url>
245         </site>
246
247         <!-- use the following if you're not using a snapshot version. -->
248         <repository>
249             <id>hibernatespatial</id>
250             <name>Hibernate Spatial Maven Repo</name>
251             <url>
252                 scp://www.hibernatespatial.org/var/maven/repository/
253             </url>
254         </repository>
255         <!-- use the following if you are using a snapshot version. -->
256         <snapshotRepository>
257             <id>hibernatespatial</id>
258             <name>Hibernate Spatial Maven Repo</name>
259             <url>
260                 scp://www.hibernatespatial.org/var/maven/repository/
261             </url>
262         </snapshotRepository>
263
264     </distributionManagement>
265     <developers>
266         <developer>
267             <id>maesenka</id>
268             <name>Karel Maesen</name>
269             <email>karel@geovise.com</email>
270             <roles>
271                 <role>Project Lead</role>
272                 <role>Committer</role>
273             </roles>
274         </developer>
275         <developer>
276             <id>jandm</id>
277             <name>Jan De Moerlose</name>
278             <email>janDM@dfc.be</email>
279             <roles>
280                 <role>Contributor</role>
281             </roles>
282         </developer>
283         <developer>
284             <id>pieterdg</id>
285             <name>Pieter De Graef</name>
286             <email>pieter@dfc.be</email>
287             <roles>
288                 <role>Contributor</role>
289             </roles>
290         </developer>
291         <developer>
292             <id>AcreeTom</id>
293             <name>Tom Acree</name>
294             <email></email>
295             <roles>
296                 <role>Contributor</role>
297             </roles>
298         </developer>
299         <developer>
300             <id>MartinSteinwender</id>
301             <name>Martin Steinwender</name>
302             <email></email>
303             <roles>
304                 <role>Contributor</role>
305             </roles>
306         </developer>
307     </developers>
308
maesenka
28
309
maesenka
9
310 </project>
FishEye: Open Source License registered to Hibernate Spatial.
Your maintenance has expired. You can renew your license at http://www.atlassian.com/fisheye/renew
Atlassian FishEye, Subversion, CVS & Perforce analysis. (Version:1.5.2 Build:build-298 2008-05-26 ) - Administration - Page generated 2010-09-09 22:32 +0200