| 263 |
maesenka |
1 |
<!--
|
|
|
2 |
~ $Id:$ ~ ~ This file is part of Hibernate Spatial, an extension to
|
|
|
3 |
the ~ hibernate ORM solution for geographic data. ~ ~ Copyright 2010
|
|
|
4 |
Geodan IT b.v. ~ ~ This library is free software; you can redistribute
|
|
|
5 |
it and/or ~ modify it under the terms of the GNU Lesser General Public
|
|
|
6 |
~ License as published by the Free Software Foundation; either ~
|
|
|
7 |
version 2.1 of the License, or (at your option) any later version. ~ ~
|
|
|
8 |
This library is distributed in the hope that it will be useful, ~ but
|
|
|
9 |
WITHOUT ANY WARRANTY; without even the implied warranty of ~
|
|
|
10 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ~
|
|
|
11 |
Lesser General Public License for more details. ~ ~ You should have
|
|
|
12 |
received a copy of the GNU Lesser General Public ~ License along with
|
|
|
13 |
this library; if not, write to the Free Software ~ Foundation, Inc.,
|
|
|
14 |
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ~ ~ For more
|
|
|
15 |
information, visit: http://www.hibernatespatial.org/
|
|
|
16 |
-->
|
| 221 |
maesenka |
17 |
|
| 220 |
janb |
18 |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 263 |
maesenka |
19 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
20 |
<modelVersion>4.0.0</modelVersion>
|
|
|
21 |
<parent>
|
|
|
22 |
<groupId>org.hibernatespatial</groupId>
|
|
|
23 |
<artifactId>hibernate-spatial-maven</artifactId>
|
|
|
24 |
<version>1.1-SNAPSHOT</version>
|
|
|
25 |
<relativePath>../hibernate-spatial-maven</relativePath>
|
|
|
26 |
</parent>
|
|
|
27 |
<artifactId>hibernate-spatial-h2-geodb</artifactId>
|
|
|
28 |
<packaging>jar</packaging>
|
|
|
29 |
<name>Hibernate Spatial H2 Dialect Provider</name>
|
|
|
30 |
<url>http://www.hibernatespatial.org</url>
|
|
|
31 |
<description>
|
| 221 |
maesenka |
32 |
GeoDB (H2 database) dialect provider for Hibernate Spatial. See
|
|
|
33 |
http://wiki.github.com/jdeolive/geodb/ for more information on GeoDB.
|
|
|
34 |
</description>
|
| 220 |
janb |
35 |
|
| 263 |
maesenka |
36 |
<properties>
|
|
|
37 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
38 |
<spring.version>3.0.2.RELEASE</spring.version>
|
|
|
39 |
</properties>
|
| 220 |
janb |
40 |
|
| 263 |
maesenka |
41 |
<!--additional repository needed for H2-geodb-->
|
|
|
42 |
<repositories>
|
|
|
43 |
<repository>
|
|
|
44 |
<id>opengeo</id>
|
|
|
45 |
<url>http://repo.opengeo.org</url>
|
|
|
46 |
</repository>
|
|
|
47 |
</repositories>
|
| 220 |
janb |
48 |
|
| 263 |
maesenka |
49 |
<dependencies>
|
|
|
50 |
<dependency>
|
|
|
51 |
<groupId>${project.groupId}</groupId>
|
|
|
52 |
<artifactId>hibernate-spatial</artifactId>
|
|
|
53 |
<version>${project.version}</version>
|
|
|
54 |
</dependency>
|
|
|
55 |
<dependency>
|
|
|
56 |
<groupId>${project.groupId}</groupId>
|
|
|
57 |
<artifactId>hibernate-spatial</artifactId>
|
|
|
58 |
<version>${project.version}</version>
|
|
|
59 |
<classifier>tests</classifier>
|
|
|
60 |
<scope>test</scope>
|
|
|
61 |
</dependency>
|
|
|
62 |
<dependency>
|
|
|
63 |
<groupId>org.opengeo</groupId>
|
|
|
64 |
<artifactId>geodb</artifactId>
|
|
|
65 |
<version>0.3</version>
|
|
|
66 |
</dependency>
|
|
|
67 |
</dependencies>
|
| 220 |
janb |
68 |
|
| 263 |
maesenka |
69 |
<build>
|
|
|
70 |
<plugins>
|
|
|
71 |
<plugin>
|
|
|
72 |
<groupId>org.apache.maven.plugins</groupId>
|
|
|
73 |
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
74 |
<version>2.0.2</version>
|
|
|
75 |
<configuration>
|
|
|
76 |
<source>1.5</source>
|
|
|
77 |
<target>1.5</target>
|
|
|
78 |
</configuration>
|
|
|
79 |
</plugin>
|
|
|
80 |
<plugin>
|
|
|
81 |
<groupId>org.apache.maven.plugins</groupId>
|
|
|
82 |
<artifactId>maven-jar-plugin</artifactId>
|
|
|
83 |
<version>2.2</version>
|
|
|
84 |
<executions>
|
|
|
85 |
<execution>
|
|
|
86 |
<goals>
|
|
|
87 |
<goal>test-jar</goal>
|
|
|
88 |
</goals>
|
|
|
89 |
</execution>
|
|
|
90 |
</executions>
|
|
|
91 |
</plugin>
|
|
|
92 |
</plugins>
|
|
|
93 |
</build>
|
|
|
94 |
<reporting>
|
|
|
95 |
<plugins>
|
|
|
96 |
<plugin>
|
|
|
97 |
<groupId>org.apache.maven.plugins</groupId>
|
|
|
98 |
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
99 |
<version>2.6.1</version>
|
|
|
100 |
</plugin>
|
|
|
101 |
<plugin>
|
|
|
102 |
<groupId>org.apache.maven.plugins</groupId>
|
|
|
103 |
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
104 |
<version>2.5</version>
|
|
|
105 |
</plugin>
|
|
|
106 |
</plugins>
|
|
|
107 |
</reporting>
|
| 220 |
janb |
108 |
|
| 263 |
maesenka |
109 |
<distributionManagement>
|
|
|
110 |
<site>
|
|
|
111 |
<id>Hibernate Spatial</id>
|
|
|
112 |
<name>Hibernate Spatial</name>
|
|
|
113 |
<url>
|
| 221 |
maesenka |
114 |
scp://www.hibernatespatial.org/var/www/www2.hibernatespatial.org/hibernate-spatial-h2-geodb
|
|
|
115 |
</url>
|
| 263 |
maesenka |
116 |
</site>
|
|
|
117 |
</distributionManagement>
|
| 220 |
janb |
118 |
|
| 263 |
maesenka |
119 |
<organization>
|
|
|
120 |
<name>Geodan IT b.v.</name>
|
|
|
121 |
<url>http://www.geodan.nl</url>
|
|
|
122 |
</organization>
|
| 220 |
janb |
123 |
|
| 263 |
maesenka |
124 |
<developers>
|
|
|
125 |
<developer>
|
|
|
126 |
<id>janb</id>
|
|
|
127 |
<name>Jan Boonen</name>
|
|
|
128 |
<email>jan.boonen@geodan.nl</email>
|
|
|
129 |
<roles>
|
|
|
130 |
<role>Project Lead</role>
|
|
|
131 |
<role>Committer</role>
|
|
|
132 |
</roles>
|
|
|
133 |
</developer>
|
|
|
134 |
<developer>
|
|
|
135 |
<id>reinoldp</id>
|
|
|
136 |
<name>Reinold Pasterkamp</name>
|
|
|
137 |
<email>reinold.pasterkamp@geodan.nl</email>
|
|
|
138 |
<roles>
|
|
|
139 |
<role>Committer</role>
|
|
|
140 |
</roles>
|
|
|
141 |
</developer>
|
|
|
142 |
</developers>
|
| 220 |
janb |
143 |
</project>
|