forked from orbisgis/h2gis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
113 lines (113 loc) · 4.3 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.orbisgis</groupId>
<artifactId>h2gis</artifactId>
<packaging>pom</packaging>
<version>1.1.1-SNAPSHOT</version>
<name>H2GIS</name>
<description>H2GIS is a spatial extension of the H2 database engine in the spirit of PostGIS. It adds support for the Open Geospatial Consortium (OGC) Simple Features for SQL (SFSQL) functions.</description>
<organization>
<name>IRSTV CNRS-FR-2488</name>
<url>http://www.irstv.fr/</url>
</organization>
<url>http://github.com/irstv/H2GIS</url>
<licenses>
<license>
<name>GNU General Public License (GPLV3+)</name>
<url>http://www.gnu.org/licenses/gpl-3.0.html</url>
</license>
</licenses>
<modules>
<module>spatial-utilities</module>
<module>h2spatial-api</module>
<module>test-utilities</module>
<module>h2spatial</module>
<module>h2spatial-ext</module>
<module>h2drivers</module>
<module>h2spatial-osgi</module>
<module>h2spatial-ext-osgi</module>
<module>h2network</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Dependency versions -->
<maven-bundle-plugin-version>2.3.7</maven-bundle-plugin-version>
<osgi-core-version>4.3.1</osgi-core-version>
<h2-version>1.3.176</h2-version>
<h2-package>com.h2database</h2-package>
<org.osgi.compendium-version>4.3.1</org.osgi.compendium-version>
<jts-version>1.13</jts-version>
<sl4j-version>1.6.0</sl4j-version>
<cts-version>1.3.3</cts-version>
<jdelaunay-version>0.5.2</jdelaunay-version>
<junit-version>4.11</junit-version>
</properties>
<scm>
<connection>scm:git:https://github.com/irstv/H2GIS.git</connection>
<developerConnection>scm:git:https://github.com/irstv/H2GIS.git</developerConnection>
<url>[email protected]:irstv/H2GIS.git</url>
</scm>
<profiles>
<profile>
<id>osgi</id>
<modules>
<module>jts-osgi</module>
<module>h2spatialtest</module>
</modules>
</profile>
<profile>
<id>standalone</id>
<modules>
<module>h2-dist</module>
</modules>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<Specification-Vendor-URL>${project.organization.url}</Specification-Vendor-URL>
<Specification-URL>${project.url}</Specification-URL>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<developers>
<developer>
<name>Nicolas Fortin</name>
<organization>IRSTV CNRS-FR-2488</organization>
</developer>
<developer>
<name>Erwan Bocher</name>
<organization>IRSTV CNRS-FR-2488</organization>
</developer>
<developer>
<name>Adam Gouge</name>
<organization>IRSTV CNRS-FR-2488</organization>
</developer>
</developers>
<parent>
<groupId>org.orbisgis</groupId>
<artifactId>orbisgis-nexus</artifactId>
<version>1</version>
</parent>
</project>