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