]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.gis/pom.xml
[maven-release-plugin] prepare release argeo-slc-0.13.0
[gpl/argeo-slc.git] / runtime / org.argeo.slc.support.gis / pom.xml
1 <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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.slc</groupId>
5 <artifactId>runtime</artifactId>
6 <version>0.13.0</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.support.gis</artifactId>
11 <name>SLC Support GIS</name>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.felix</groupId>
16 <artifactId>maven-bundle-plugin</artifactId>
17 <version>${version.maven-bundle-plugin}</version>
18 <configuration>
19 <instructions>
20 <Export-Package>
21 org.argeo.slc.*
22 </Export-Package>
23 <Import-Package>*,
24 org.opengis.feature.simple,
25 org.argeo.slc.structure
26 </Import-Package>
27 </instructions>
28 </configuration>
29 </plugin>
30 </plugins>
31 </build>
32 <dependencies>
33 <!-- SLC -->
34 <dependency>
35 <groupId>org.argeo.slc.runtime</groupId>
36 <artifactId>org.argeo.slc.core</artifactId>
37 </dependency>
38
39 <dependency>
40 <groupId>org.slf4j</groupId>
41 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
42 </dependency>
43
44 <!-- GIS -->
45 <dependency>
46 <groupId>org.argeo.dep.osgi</groupId>
47 <artifactId>org.argeo.dep.osgi.jts</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.argeo.dep.osgi</groupId>
51 <artifactId>org.argeo.dep.osgi.postgis.jdbc</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>org.argeo.dep.osgi</groupId>
55 <artifactId>org.argeo.dep.osgi.hibernatespatial</artifactId>
56 </dependency>
57 <!-- GeoTools -->
58 <dependency>
59 <groupId>org.argeo.dep.osgi</groupId>
60 <artifactId>org.argeo.dep.osgi.geotools</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>org.jdom</groupId>
64 <artifactId>com.springsource.org.jdom</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>org.jaxen</groupId>
68 <artifactId>com.springsource.org.jaxen</artifactId>
69 </dependency>
70 <dependency>
71 <groupId>org.argeo.dep.osgi</groupId>
72 <artifactId>org.argeo.dep.osgi.jsr275</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.argeo.dep.osgi</groupId>
76 <artifactId>org.argeo.dep.osgi.java3d</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.argeo.dep.osgi</groupId>
80 <artifactId>org.argeo.dep.osgi.geoapi</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.apache.commons</groupId>
84 <artifactId>com.springsource.org.apache.commons.beanutils</artifactId>
85 </dependency>
86 <!-- JAI -->
87 <dependency>
88 <groupId>javax.media.jai</groupId>
89 <artifactId>com.springsource.javax.media.jai.core</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>javax.media.jai</groupId>
93 <artifactId>com.springsource.javax.media.jai.codec</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>org.argeo.dep.osgi</groupId>
97 <artifactId>org.argeo.dep.osgi.jai.imageio</artifactId>
98 </dependency>
99
100 </dependencies>
101 <repositories>
102 <repository>
103 <id>com.springsource.repository.bundles.external</id>
104 <name>
105 SpringSource Enterprise Bundle Repository - External
106 Bundle
107 Releases
108 </name>
109 <url>
110 http://repository.springsource.com/maven/bundles/external
111 </url>
112 <releases>
113 <enabled>true</enabled>
114 <updatePolicy>daily</updatePolicy>
115 <checksumPolicy>fail</checksumPolicy>
116 </releases>
117 <snapshots>
118 <enabled>false</enabled>
119 <updatePolicy>never</updatePolicy>
120 <checksumPolicy>fail</checksumPolicy>
121 </snapshots>
122 </repository>
123 </repositories>
124 </project>