/[schmitzm]/branches/2.3.x/pom.xml
ViewVC logotype

Contents of /branches/2.3.x/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 787 - (show annotations)
Tue Apr 6 11:38:23 2010 UTC (14 years, 10 months ago) by alfonx
Original Path: trunk/pom.xml
File MIME type: text/xml
File size: 7181 byte(s)
jetzt werden die resources korrekt in das jar geapckt.. in maven sind sources und resources eigentlich getrennt....

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 <groupId>de.schmitzm</groupId>
5 <artifactId>schmitzm-library</artifactId>
6 <name>SCHMITZM</name>
7 <version>2.0.x-SNAPSHOT</version>
8 <description>A jar full of utility methods for Java, Swing, Geotools
9 and JFreeChart</description>
10 <issueManagement>
11 <system>gforge</system>
12 <url>http://wald.intevation.org/tracker/?group_id=47</url>
13 </issueManagement>
14
15 <licenses>
16 <license>
17 <name>Lesser General Public License (LGPL)</name>
18 <url>http://www.gnu.org/copyleft/lgpl.txt</url>
19 </license>
20 </licenses>
21
22 <properties>
23 <geotools.version>2.6.2</geotools.version>
24 </properties>
25
26 <developers>
27 <developer>
28 <id>alfonx</id>
29 <name>Stefan A. Tzeggai</name>
30 <email>[email protected]</email>
31 <url>http://www.wikisquare.de</url>
32 <organization>Wikisquare.de</organization>
33 <organizationUrl>http://www.wikisquare.de</organizationUrl>
34 <timezone>GMT+1</timezone>
35 <roles>
36 <role>Developer</role>
37 <role>Maven package maintainer</role>
38 </roles>
39 </developer>
40 <developer>
41 <id>mschmitz</id>
42 <name>Martin Schmitz</name>
43 <timezone>GMT+1</timezone>
44 <roles>
45 <role>Developer</role>
46 </roles>
47 </developer>
48 </developers>
49
50 <scm>
51 <connection>scm:https://svn.wald.intevation.org/svn/schmitzm</connection>
52 <url>https://svn.wald.intevation.org/svn/schmitzm/trunk</url>
53 </scm>
54
55 <organization>
56 <url>http://www.wikisquare.de</url>
57 </organization>
58
59
60 <dependencies>
61
62 <dependency>
63 <groupId>org.geotools</groupId>
64 <artifactId>gt-render</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-shapefile-renderer</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-legacy</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-brewer</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-image</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-coverage</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-geotiff</artifactId>
113 <version>${geotools.version}</version>
114 <type>jar</type>
115 <scope>compile</scope>
116 </dependency>
117
118 <dependency>
119 <groupId>org.geotools</groupId>
120 <artifactId>gt-swing</artifactId>
121 <version>${geotools.version}</version>
122 <type>jar</type>
123 <scope>compile</scope>
124 </dependency>
125
126 <dependency>
127 <groupId>jfree</groupId>
128 <artifactId>jfreechart</artifactId>
129 <version>1.0.13</version>
130 </dependency>
131
132 <dependency>
133 <groupId>org.geotools</groupId>
134 <artifactId>gt-main</artifactId>
135 <version>${geotools.version}</version>
136 <type>jar</type>
137 <scope>compile</scope>
138 </dependency>
139
140 <dependency>
141 <groupId>org.geotools</groupId>
142 <artifactId>gt-arcgrid</artifactId>
143 <version>${geotools.version}</version>
144 <type>jar</type>
145 <scope>compile</scope>
146 </dependency>
147
148 <dependency>
149 <groupId>org.slf4j</groupId>
150 <artifactId>slf4j-log4j12</artifactId>
151 <version>1.5.11</version>
152 <type>jar</type>
153 <scope>compile</scope>
154 </dependency>
155
156 <dependency>
157 <!--
158 Logging with log4j. Die MVN dependency fuer 1.2.15 ist defekt.
159 downgraded to 1.2.14 http://jira.codehaus.org/browse/MEV-649
160 -->
161 <groupId>log4j</groupId>
162 <artifactId>log4j</artifactId>
163 <version>1.2.14</version>
164 </dependency>
165
166 <dependency>
167 <groupId>junit</groupId>
168 <artifactId>junit</artifactId>
169 <version>4.8.1</version>
170 <type>jar</type>
171 <scope>compile</scope>
172 </dependency>
173
174 <dependency>
175 <groupId>colt</groupId>
176 <artifactId>colt</artifactId>
177 <version>1.2.0</version>
178 <type>jar</type>
179 <scope>compile</scope>
180 </dependency>
181
182 <dependency>
183 <groupId>javax.media</groupId>
184 <artifactId>jai_core</artifactId>
185 <version>1.1.3</version>
186 <type>jar</type>
187 <scope>compile</scope>
188 </dependency>
189
190 <dependency>
191 <groupId>commons-io</groupId>
192 <artifactId>commons-io</artifactId>
193 <version>1.4</version>
194 <type>jar</type>
195 <scope>compile</scope>
196 </dependency>
197
198 <dependency>
199 <groupId>net.jini</groupId>
200 <artifactId>jini-ext</artifactId>
201 <version>2.1</version>
202 <type>jar</type>
203 <scope>compile</scope>
204 </dependency>
205
206 <dependency>
207 <groupId>com.miglayout</groupId>
208 <artifactId>miglayout</artifactId>
209 <version>3.7.2</version>
210 </dependency>
211
212 <dependency>
213 <groupId>jdom</groupId>
214 <artifactId>jdom</artifactId>
215 <version>1.1</version>
216 </dependency>
217
218 </dependencies>
219
220
221 <build>
222
223 <sourceDirectory>src</sourceDirectory>
224 <testSourceDirectory>src_junit</testSourceDirectory>
225
226 <outputDirectory>classes</outputDirectory>
227 <testOutputDirectory>test-classes</testOutputDirectory>
228
229 <directory>dist</directory>
230 <finalName>schmitzm-2.0.x</finalName>
231
232 <resources>
233 <resource>
234 <directory>src</directory>
235 <filtering>false</filtering>
236 <excludes>
237 <exclude>**/*.java</exclude>
238 </excludes>
239 </resource>
240 </resources>
241
242
243 <plugins>
244
245 <plugin>
246 <artifactId>maven-compiler-plugin</artifactId>
247 <configuration>
248 <source>1.6</source>
249 <target>1.6</target>
250 </configuration>
251 </plugin>
252
253 <plugin>
254 <groupId>org.apache.maven.plugins</groupId>
255 <artifactId>maven-eclipse-plugin</artifactId>
256 <version>2.5</version>
257 <configuration>
258 <downloadSources>true</downloadSources>
259 <downloadJavadocs>true</downloadJavadocs>
260 </configuration>
261 </plugin>
262
263 </plugins>
264
265 </build>
266
267
268 <repositories>
269
270 <repository>
271 <snapshots>
272 <enabled>false</enabled>
273 </snapshots>
274 <id>central</id>
275 <name>libs-releases</name>
276 <url>http://www.wikisquare.de:8080/artifactory/libs-releases</url>
277 </repository>
278
279 <repository>
280 <snapshots />
281 <id>snapshots</id>
282 <name>libs-snapshots</name>
283 <url>http://www.wikisquare.de:8080/artifactory/libs-snapshots</url>
284 </repository>
285
286 </repositories>
287
288
289 <distributionManagement>
290
291 <repository>
292 <id>artifactory.wikisquare.de</id>
293 <name>artifactory.wikisquare.de-releases</name>
294 <url>http://www.wikisquare.de:8080/artifactory/libs-releases-local
295 </url>
296 </repository>
297
298 <snapshotRepository>
299 <id>artifactory.wikisquare.de</id>
300 <name>artifactory.wikisquare.de-snapshots</name>
301 <url>http://www.wikisquare.de:8080/artifactory/libs-snapshots-local
302 </url>
303 </snapshotRepository>
304
305 </distributionManagement>
306
307 </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