/[schmitzm]/trunk/schmitzm-gt/pom.xml
ViewVC logotype

Contents of /trunk/schmitzm-gt/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1480 - (show annotations)
Wed Feb 2 21:06:48 2011 UTC (14 years ago) by alfonx
File MIME type: text/xml
File size: 5688 byte(s)
Schmitzm is prepared for Geotools 2.7! ... no more compile errors nor test errors.
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/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <groupId>de.schmitzm</groupId>
6 <artifactId>schmitzm-gt</artifactId>
7 <version>2.5-SNAPSHOT</version>
8 <packaging>jar</packaging>
9
10 <parent>
11 <groupId>de.schmitzm</groupId>
12 <artifactId>schmitzm-parent</artifactId>
13 <version>2.5-SNAPSHOT</version>
14 <relativePath>../schmitzm-parent/pom.xml</relativePath>
15 </parent>
16
17 <name>schmitzm-gt</name>
18 <url>http://maven.apache.org</url>
19
20 <dependencies>
21
22 <dependency>
23 <groupId>de.schmitzm</groupId>
24 <artifactId>schmitzm-core</artifactId>
25 <version>${project.version}</version>
26 <type>test-jar</type>
27 <scope>test</scope>
28 </dependency>
29
30 <dependency>
31 <groupId>de.schmitzm</groupId>
32 <artifactId>schmitzm-core</artifactId>
33 <version>${project.version}</version>
34 <type>jar</type>
35 <scope>compile</scope>
36 </dependency>
37
38 <dependency>
39 <groupId>org.geotools</groupId>
40 <artifactId>gt-render</artifactId>
41 <version>${geotools.version}</version>
42 <type>jar</type>
43 <scope>compile</scope>
44 </dependency>
45
46 <dependency>
47 <groupId>org.geotools</groupId>
48 <artifactId>gt-epsg-hsql</artifactId>
49 <version>${geotools.version}</version>
50 <type>jar</type>
51 <scope>compile</scope>
52 </dependency>
53
54 <dependency>
55 <groupId>org.geotools.xsd</groupId>
56 <artifactId>gt-xsd-sld</artifactId>
57 <version>${geotools.version}</version>
58 <type>jar</type>
59 <scope>compile</scope>
60 </dependency>
61
62 <dependency>
63 <groupId>org.geotools</groupId>
64 <artifactId>gt-shapefile-renderer</artifactId>
65 <version>${geotools.version}</version>
66 <type>jar</type>
67 <scope>compile</scope>
68 </dependency>
69
70 <!-- <dependency>-->
71 <!-- <groupId>org.geotools</groupId>-->
72 <!-- <artifactId>gt-legacy</artifactId>-->
73 <!-- <version>${geotools.version}</version>-->
74 <!-- <type>jar</type>-->
75 <!-- <scope>compile</scope>-->
76 <!-- </dependency>-->
77
78 <dependency>
79 <groupId>org.geotools</groupId>
80 <artifactId>gt-brewer</artifactId>
81 <version>${geotools.version}</version>
82 <type>jar</type>
83 <scope>compile</scope>
84 </dependency>
85
86 <dependency>
87 <groupId>org.geotools</groupId>
88 <artifactId>gt-image</artifactId>
89 <version>${geotools.version}</version>
90 <type>jar</type>
91 <scope>compile</scope>
92 </dependency>
93
94 <dependency>
95 <groupId>org.geotools</groupId>
96 <artifactId>gt-coverage</artifactId>
97 <version>${geotools.version}</version>
98 <type>jar</type>
99 <scope>compile</scope>
100 </dependency>
101
102 <dependency>
103 <groupId>org.geotools</groupId>
104 <artifactId>gt-geotiff</artifactId>
105 <version>${geotools.version}</version>
106 <type>jar</type>
107 <scope>compile</scope>
108 </dependency>
109
110 <dependency>
111 <groupId>org.geotools</groupId>
112 <artifactId>gt-wfs</artifactId>
113 <version>${geotools.version}</version>
114 <type>jar</type>
115 </dependency>
116
117 <dependency>
118 <groupId>org.geotools</groupId>
119 <artifactId>gt-swing</artifactId>
120 <version>${geotools.version}</version>
121 <type>jar</type>
122 <scope>compile</scope>
123 <exclusions>
124 <!-- We use miglayout 3.7.3, not 3.7 -->
125 <exclusion>
126 <groupId>com.miglayout</groupId>
127 <artifactId>miglayout</artifactId>
128 </exclusion>
129 </exclusions>
130 </dependency>
131
132 <dependency>
133 <groupId>org.geotools.jdbc</groupId>
134 <artifactId>gt-jdbc-postgis</artifactId>
135 <version>${geotools.version}</version>
136 <type>jar</type>
137 <scope>compile</scope>
138 </dependency>
139
140
141 <dependency>
142 <groupId>org.geotools</groupId>
143 <artifactId>gt-main</artifactId>
144 <version>${geotools.version}</version>
145 <type>jar</type>
146 <scope>compile</scope>
147
148 <exclusions>
149 <exclusion>
150 <!-- avoiding a version conflict... -->
151 <groupId>commons-logging</groupId>
152 <artifactId>commons-logging</artifactId>
153 </exclusion>
154 </exclusions>
155 </dependency>
156
157 <dependency>
158 <groupId>org.geotools</groupId>
159 <artifactId>gt-arcgrid</artifactId>
160 <version>${geotools.version}</version>
161 <type>jar</type>
162 <scope>compile</scope>
163 </dependency>
164
165
166 <dependency>
167 <groupId>colt</groupId>
168 <artifactId>colt</artifactId>
169 <version>1.2.0</version>
170 <type>jar</type>
171 <scope>compile</scope>
172 </dependency>
173
174 <dependency>
175 <groupId>commons-logging</groupId>
176 <artifactId>commons-logging</artifactId>
177 <version>1.0.4</version>
178 <type>jar</type>
179 <scope>compile</scope>
180 </dependency>
181 </dependencies>
182
183
184 <profiles>
185 <profile>
186 <id>resourceOperationRemove</id>
187 <!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove"
188 the build will remove any lines in the resource bundes that are tagged with
189 REMOVEME_ -->
190 <build>
191 <plugins>
192 <plugin>
193 <groupId>org.codehaus.mojo</groupId>
194 <artifactId>exec-maven-plugin</artifactId>
195 <version>1.2</version>
196 <executions>
197 <execution>
198 <phase>generate-sources</phase>
199 <goals>
200 <goal>java</goal>
201 </goals>
202 <configuration>
203 <mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass>
204 <arguments>
205 <argument>-s</argument>
206 <argument>${basedir}/src/main/resources</argument>
207 <argument>-b</argument>
208 <argument>de.schmitzm.geotools.gui.resource.locales.GTResourceBundle;de.schmitzm.geotools.feature.resource.locales.FeatureResourceBundle
209 </argument>
210 </arguments>
211 </configuration>
212 </execution>
213 </executions>
214 </plugin>
215 </plugins>
216 </build>
217 </profile>
218 </profiles>
219
220 </project>

Properties

Name Value
svn:eol-style native
svn:keywords Id URL
svn:mime-type text/xml

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26