forked from orbisgis/h2gis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
61 lines (56 loc) · 2.08 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
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Maven Coordinates -->
<parent>
<artifactId>h2gis-parent</artifactId>
<groupId>org.orbisgis</groupId>
<version>2.0.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<artifactId>h2gis-api</artifactId>
<packaging>bundle</packaging>
<!-- Project Information -->
<name>h2gis-api</name>
<description>H2GIS API define extension point of H2GIS</description>
<organization>
<name>CNRS</name>
<url>http://www.h2gis.org</url>
</organization>
<url>http://github.com/orbisgis/H2GIS</url>
<licenses>
<license>
<name>GNU Lesser General Public License (LGPLV3+)</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.html</url>
</license>
</licenses>
<!-- Properties -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- Build Settings -->
<build>
<plugins>
<!-- Plugin for the bundle packaging -->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Public-Package>org.h2gis.api.*</Public-Package>
<Bundle-Vendor>CNRS</Bundle-Vendor>
<Bundle-Category>JDBC</Bundle-Category>
</instructions>
</configuration>
</plugin>
<!-- Plugin for the compilation -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>