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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 798 - (hide annotations)
Wed Apr 14 10:25:00 2010 UTC (14 years, 10 months ago) by alfonx
Original Path: trunk/pom.xml
File MIME type: text/xml
File size: 7790 byte(s)
pom.xml erstellt und deployed jetzt auch immer eine ...sources.jar
1 alfonx 755 <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 alfonx 756 <groupId>de.schmitzm</groupId>
5     <artifactId>schmitzm-library</artifactId>
6 alfonx 755 <name>SCHMITZM</name>
7 alfonx 756 <version>2.0.x-SNAPSHOT</version>
8 alfonx 755 <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 alfonx 757
15 alfonx 784 <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 alfonx 757
22 alfonx 756 <properties>
23 alfonx 790 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24 alfonx 756 <geotools.version>2.6.2</geotools.version>
25     </properties>
26 alfonx 784
27 alfonx 755 <developers>
28     <developer>
29     <id>alfonx</id>
30     <name>Stefan A. Tzeggai</name>
31     <email>[email protected]</email>
32     <url>http://www.wikisquare.de</url>
33     <organization>Wikisquare.de</organization>
34     <organizationUrl>http://www.wikisquare.de</organizationUrl>
35     <timezone>GMT+1</timezone>
36     <roles>
37     <role>Developer</role>
38     <role>Maven package maintainer</role>
39     </roles>
40     </developer>
41     <developer>
42     <id>mschmitz</id>
43     <name>Martin Schmitz</name>
44     <timezone>GMT+1</timezone>
45     <roles>
46     <role>Developer</role>
47     </roles>
48     </developer>
49     </developers>
50 alfonx 784
51 alfonx 755 <scm>
52     <connection>scm:https://svn.wald.intevation.org/svn/schmitzm</connection>
53     <url>https://svn.wald.intevation.org/svn/schmitzm/trunk</url>
54     </scm>
55 alfonx 784
56 alfonx 755 <organization>
57     <url>http://www.wikisquare.de</url>
58     </organization>
59 alfonx 784
60    
61 alfonx 755 <dependencies>
62 alfonx 784
63 alfonx 765 <dependency>
64 alfonx 755 <groupId>org.geotools</groupId>
65     <artifactId>gt-render</artifactId>
66 alfonx 756 <version>${geotools.version}</version>
67 alfonx 755 <type>jar</type>
68     <scope>compile</scope>
69     </dependency>
70    
71     <dependency>
72     <groupId>org.geotools</groupId>
73     <artifactId>gt-shapefile-renderer</artifactId>
74 alfonx 756 <version>${geotools.version}</version>
75 alfonx 755 <type>jar</type>
76     <scope>compile</scope>
77     </dependency>
78    
79     <dependency>
80     <groupId>org.geotools</groupId>
81     <artifactId>gt-legacy</artifactId>
82 alfonx 756 <version>${geotools.version}</version>
83 alfonx 755 <type>jar</type>
84     <scope>compile</scope>
85     </dependency>
86 alfonx 756
87 alfonx 755 <dependency>
88     <groupId>org.geotools</groupId>
89     <artifactId>gt-brewer</artifactId>
90 alfonx 756 <version>${geotools.version}</version>
91 alfonx 755 <type>jar</type>
92     <scope>compile</scope>
93     </dependency>
94 alfonx 756
95 alfonx 755 <dependency>
96     <groupId>org.geotools</groupId>
97     <artifactId>gt-image</artifactId>
98 alfonx 756 <version>${geotools.version}</version>
99 alfonx 755 <type>jar</type>
100     <scope>compile</scope>
101     </dependency>
102 alfonx 756
103 alfonx 755 <dependency>
104     <groupId>org.geotools</groupId>
105 alfonx 758 <artifactId>gt-coverage</artifactId>
106     <version>${geotools.version}</version>
107     <type>jar</type>
108     <scope>compile</scope>
109     </dependency>
110    
111     <dependency>
112     <groupId>org.geotools</groupId>
113 alfonx 755 <artifactId>gt-geotiff</artifactId>
114 alfonx 756 <version>${geotools.version}</version>
115 alfonx 755 <type>jar</type>
116     <scope>compile</scope>
117     </dependency>
118 alfonx 756
119 alfonx 755 <dependency>
120     <groupId>org.geotools</groupId>
121     <artifactId>gt-swing</artifactId>
122 alfonx 756 <version>${geotools.version}</version>
123 alfonx 755 <type>jar</type>
124     <scope>compile</scope>
125     </dependency>
126    
127     <dependency>
128     <groupId>jfree</groupId>
129     <artifactId>jfreechart</artifactId>
130     <version>1.0.13</version>
131     </dependency>
132    
133     <dependency>
134     <groupId>org.geotools</groupId>
135     <artifactId>gt-main</artifactId>
136 alfonx 756 <version>${geotools.version}</version>
137 alfonx 755 <type>jar</type>
138     <scope>compile</scope>
139     </dependency>
140    
141     <dependency>
142     <groupId>org.geotools</groupId>
143     <artifactId>gt-arcgrid</artifactId>
144 alfonx 756 <version>${geotools.version}</version>
145 alfonx 755 <type>jar</type>
146     <scope>compile</scope>
147     </dependency>
148    
149 alfonx 771 <dependency>
150     <groupId>org.slf4j</groupId>
151     <artifactId>slf4j-log4j12</artifactId>
152     <version>1.5.11</version>
153     <type>jar</type>
154     <scope>compile</scope>
155     </dependency>
156 alfonx 755
157     <dependency>
158 alfonx 768 <!--
159     Logging with log4j. Die MVN dependency fuer 1.2.15 ist defekt.
160     downgraded to 1.2.14 http://jira.codehaus.org/browse/MEV-649
161     -->
162 alfonx 755 <groupId>log4j</groupId>
163     <artifactId>log4j</artifactId>
164     <version>1.2.14</version>
165     </dependency>
166 alfonx 768
167 alfonx 755 <dependency>
168     <groupId>junit</groupId>
169     <artifactId>junit</artifactId>
170     <version>4.8.1</version>
171     <type>jar</type>
172     <scope>compile</scope>
173     </dependency>
174 alfonx 784
175 alfonx 755 <dependency>
176     <groupId>colt</groupId>
177     <artifactId>colt</artifactId>
178     <version>1.2.0</version>
179     <type>jar</type>
180     <scope>compile</scope>
181     </dependency>
182 alfonx 784
183 alfonx 755 <dependency>
184     <groupId>javax.media</groupId>
185     <artifactId>jai_core</artifactId>
186     <version>1.1.3</version>
187     <type>jar</type>
188     <scope>compile</scope>
189     </dependency>
190 alfonx 784
191 alfonx 755 <dependency>
192     <groupId>commons-io</groupId>
193     <artifactId>commons-io</artifactId>
194     <version>1.4</version>
195     <type>jar</type>
196     <scope>compile</scope>
197     </dependency>
198 alfonx 784
199 alfonx 755 <dependency>
200     <groupId>net.jini</groupId>
201     <artifactId>jini-ext</artifactId>
202     <version>2.1</version>
203     <type>jar</type>
204     <scope>compile</scope>
205     </dependency>
206 alfonx 784
207 alfonx 758 <dependency>
208     <groupId>com.miglayout</groupId>
209     <artifactId>miglayout</artifactId>
210     <version>3.7.2</version>
211     </dependency>
212 alfonx 784
213 alfonx 758 <dependency>
214 alfonx 796 <groupId>org.jdom</groupId>
215 alfonx 758 <artifactId>jdom</artifactId>
216     <version>1.1</version>
217     </dependency>
218 alfonx 784
219 alfonx 755 </dependencies>
220    
221 alfonx 784
222 alfonx 755 <build>
223 alfonx 784
224 alfonx 755 <sourceDirectory>src</sourceDirectory>
225     <testSourceDirectory>src_junit</testSourceDirectory>
226 alfonx 784
227 alfonx 795 <!-- <outputDirectory>classes</outputDirectory>-->
228     <!-- <testOutputDirectory>test-classes</testOutputDirectory>-->
229     <!-- <directory>dist</directory>-->
230 alfonx 784
231 alfonx 755 <finalName>schmitzm-2.0.x</finalName>
232 alfonx 784
233     <resources>
234     <resource>
235     <directory>src</directory>
236     <filtering>false</filtering>
237     <excludes>
238     <exclude>**/*.java</exclude>
239 alfonx 793 <exclude>**/*.svn</exclude>
240     <exclude>**/*.cvs</exclude>
241 alfonx 794 <exclude>**/*~</exclude>
242     <exclude>**/Thumbs.db</exclude>
243 alfonx 784 </excludes>
244     </resource>
245     </resources>
246    
247    
248 alfonx 755 <plugins>
249 alfonx 798 <plugin>
250     <groupId>org.apache.maven.plugins</groupId>
251     <artifactId>maven-source-plugin</artifactId>
252     <executions>
253     <execution>
254     <id>attach-sources</id>
255     <goals>
256     <goal>jar</goal>
257     </goals>
258     </execution>
259     </executions>
260     </plugin>
261 alfonx 784
262 alfonx 755 <plugin>
263 alfonx 791 <groupId>org.apache.maven.plugins</groupId>
264 alfonx 755 <artifactId>maven-compiler-plugin</artifactId>
265 alfonx 791 <version>2.1</version>
266 alfonx 755 <configuration>
267     <source>1.6</source>
268     <target>1.6</target>
269     </configuration>
270     </plugin>
271    
272     <plugin>
273     <groupId>org.apache.maven.plugins</groupId>
274     <artifactId>maven-eclipse-plugin</artifactId>
275     <version>2.5</version>
276     <configuration>
277     <downloadSources>true</downloadSources>
278 alfonx 790 <downloadJavadocs>false</downloadJavadocs>
279 alfonx 755 </configuration>
280     </plugin>
281    
282     </plugins>
283 alfonx 784
284 alfonx 755 </build>
285    
286 alfonx 756
287 alfonx 784 <repositories>
288 alfonx 756
289 alfonx 784 <repository>
290     <snapshots>
291     <enabled>false</enabled>
292     </snapshots>
293     <id>central</id>
294     <name>libs-releases</name>
295     <url>http://www.wikisquare.de:8080/artifactory/libs-releases</url>
296     </repository>
297 alfonx 783
298 alfonx 784 <repository>
299     <snapshots />
300     <id>snapshots</id>
301     <name>libs-snapshots</name>
302     <url>http://www.wikisquare.de:8080/artifactory/libs-snapshots</url>
303     </repository>
304    
305     </repositories>
306    
307    
308     <distributionManagement>
309    
310     <repository>
311     <id>artifactory.wikisquare.de</id>
312     <name>artifactory.wikisquare.de-releases</name>
313     <url>http://www.wikisquare.de:8080/artifactory/libs-releases-local
314     </url>
315     </repository>
316    
317     <snapshotRepository>
318     <id>artifactory.wikisquare.de</id>
319     <name>artifactory.wikisquare.de-snapshots</name>
320     <url>http://www.wikisquare.de:8080/artifactory/libs-snapshots-local
321     </url>
322     </snapshotRepository>
323    
324     </distributionManagement>
325    
326 alfonx 755 </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