]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.support.gis/pom.xml
Use latest Commons
[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.13.1-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 org.springframework.dao.support,
28 org.hibernate.proxy;resolution:=optional,
29 javassist.util.proxy;resolution:=optional,
30 *
31 </Import-Package>
32 </instructions>
33 </configuration>
34 </plugin>
35 <plugin>
36 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-surefire-plugin</artifactId>
38 <configuration>
39 <skipTests>true</skipTests>
40 </configuration>
41 </plugin>
42 </plugins>
43 </build>
44 <dependencies>
45 <!-- Commons -->
46 <dependency>
47 <groupId>org.argeo.commons.basic</groupId>
48 <artifactId>org.argeo.basic.nodeps</artifactId>
49 <version>${version.argeo-commons}</version>
50 </dependency>
51 <dependency>
52 <groupId>org.argeo.commons.gis</groupId>
53 <artifactId>org.argeo.gis.geotools</artifactId>
54 <version>${version.argeo-commons}</version>
55 </dependency>
56
57 <!-- SLC -->
58 <dependency>
59 <groupId>org.argeo.slc.runtime</groupId>
60 <artifactId>org.argeo.slc.core</artifactId>
61 <version>${version.slc}</version>
62 </dependency>
63
64 <dependency>
65 <groupId>org.slf4j</groupId>
66 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
67 </dependency>
68
69 <!-- Spring -->
70 <dependency>
71 <groupId>org.springframework</groupId>
72 <artifactId>org.springframework.orm</artifactId>
73 </dependency>
74
75 <!-- GIS -->
76 <dependency>
77 <groupId>org.argeo.dep.osgi</groupId>
78 <artifactId>org.argeo.dep.osgi.jts</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>org.argeo.dep.osgi</groupId>
82 <artifactId>org.argeo.dep.osgi.postgis.jdbc</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>org.argeo.dep.osgi</groupId>
86 <artifactId>org.argeo.dep.osgi.hibernatespatial</artifactId>
87 </dependency>
88 <!-- GeoTools -->
89 <dependency>
90 <groupId>org.argeo.dep.osgi</groupId>
91 <artifactId>org.argeo.dep.osgi.geotools</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>org.jdom</groupId>
95 <artifactId>com.springsource.org.jdom</artifactId>
96 </dependency>
97 <dependency>
98 <groupId>org.jaxen</groupId>
99 <artifactId>com.springsource.org.jaxen</artifactId>
100 </dependency>
101 <dependency>
102 <groupId>org.argeo.dep.osgi</groupId>
103 <artifactId>org.argeo.dep.osgi.jsr275</artifactId>
104 </dependency>
105 <dependency>
106 <groupId>org.argeo.dep.osgi</groupId>
107 <artifactId>org.argeo.dep.osgi.java3d</artifactId>
108 </dependency>
109 <dependency>
110 <groupId>org.apache.commons</groupId>
111 <artifactId>com.springsource.org.apache.commons.beanutils</artifactId>
112 </dependency>
113 <!-- JAI -->
114 <dependency>
115 <groupId>javax.media.jai</groupId>
116 <artifactId>com.springsource.javax.media.jai.core</artifactId>
117 </dependency>
118 <dependency>
119 <groupId>javax.media.jai</groupId>
120 <artifactId>com.springsource.javax.media.jai.codec</artifactId>
121 </dependency>
122 <dependency>
123 <groupId>org.argeo.dep.osgi</groupId>
124 <artifactId>org.argeo.dep.osgi.jai.imageio</artifactId>
125 </dependency>
126
127 <!-- TEST -->
128 <dependency>
129 <groupId>org.argeo.slc.runtime</groupId>
130 <artifactId>org.argeo.slc.unit</artifactId>
131 <scope>test</scope>
132 <version>${version.slc}</version>
133 </dependency>
134 </dependencies>
135 </project>