Subversion Repositories hibernate-spatial

Rev

Rev 232 | Rev 318 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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