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

Annotation of /trunk/schmitzm-parent/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2341 - (hide annotations)
Sun Jun 9 21:18:55 2013 UTC (11 years, 8 months ago) by mojays
File MIME type: text/xml
File size: 8662 byte(s)
Hinweis fuer Sonderzeichenbehandlung in parent-pom.xml
1 alfonx 1386 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 alfonx 1391 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 alfonx 1386
5 alfonx 1391 <groupId>de.schmitzm</groupId>
6     <artifactId>schmitzm-parent</artifactId>
7 keeb 2050 <version>2.8-SNAPSHOT</version>
8 alfonx 1391 <packaging>pom</packaging>
9     <description>Describes maven pom settings for all schmitz modules</description>
10 alfonx 1386
11 alfonx 1391 <name>schmitzm-parent</name>
12     <url>http://maven.apache.org</url>
13 alfonx 1386
14 alfonx 1391 <properties>
15     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16 alfonx 1480 <schmitzm.version>${project.version}</schmitzm.version>
17 alfonx 2221 <!-- <geotools.version>8-SNAPSHOT</geotools.version> -->
18     <geotools.version>2.7.5</geotools.version>
19 alfonx 1391 </properties>
20 alfonx 1386
21 alfonx 1391 <issueManagement>
22     <system>gforge</system>
23     <url>http://wald.intevation.org/tracker/?group_id=47</url>
24     </issueManagement>
25    
26     <licenses>
27     <license>
28     <name>Lesser General Public License (LGPL)</name>
29     <url>http://www.gnu.org/copyleft/lgpl.txt</url>
30     </license>
31     </licenses>
32    
33     <developers>
34     <developer>
35     <id>mschmitz</id>
36     <name>Martin Schmitz</name>
37     <timezone>GMT+1</timezone>
38     <roles>
39     <role>Developer</role>
40     </roles>
41     </developer>
42     <developer>
43     <id>alfonx</id>
44     <name>Stefan A. Tzeggai</name>
45     <email>[email protected]</email>
46     <url>http://www.wikisquare.de</url>
47     <organization>Wikisquare.de</organization>
48     <organizationUrl>http://www.wikisquare.de</organizationUrl>
49     <timezone>GMT+1</timezone>
50     <roles>
51     <role>Developer</role>
52     <role>Maven package maintainer</role>
53     </roles>
54     </developer>
55     </developers>
56    
57     <scm>
58     <connection>scm:https://svn.wald.intevation.org/svn/schmitzm</connection>
59     <url>https://svn.wald.intevation.org/svn/schmitzm/trunk</url>
60     <developerConnection>svn+ssh://developername@svn.wald.intevation.org/schmitzm/trunk</developerConnection>
61     </scm>
62    
63     <organization>
64     <url>http://www.wikisquare.de</url>
65     </organization>
66    
67 alfonx 1406
68 alfonx 1391 <dependencies>
69    
70     <dependency>
71     <!-- Fuer Sonderzeichenbehandlung -->
72     <groupId>ant-contrib</groupId>
73     <artifactId>ant-contrib</artifactId>
74     <version>1.0b3</version>
75     <type>jar</type>
76     <scope>provided</scope>
77     </dependency>
78    
79     <dependency>
80     <!-- Fuer Sonderzeichenbehandlung -->
81     <groupId>ant</groupId>
82     <artifactId>ant-nodeps</artifactId>
83     <version>1.6.5</version>
84     <scope>provided</scope>
85     </dependency>
86    
87     <dependency>
88     <!-- Fuer Sonderzeichenbehandlung -->
89     <groupId>com.sun</groupId>
90     <artifactId>tools</artifactId>
91     <version>1.6.0</version>
92     <scope>system</scope>
93     <systemPath>${java.home}/../lib/tools.jar</systemPath>
94     </dependency>
95 alfonx 1419
96     <dependency>
97     <groupId>junit</groupId>
98     <artifactId>junit</artifactId>
99 alfonx 2273 <version>4.11</version>
100 alfonx 1419 <type>jar</type>
101     <scope>test</scope>
102     </dependency>
103     <dependency>
104     <groupId>log4j</groupId>
105     <artifactId>log4j</artifactId>
106 alfonx 2274 <version>1.2.17</version>
107 alfonx 1419 </dependency>
108 alfonx 2274
109     <!-- SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J:
110     Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder
111     for further details. -->
112     <dependency>
113     <groupId>org.slf4j</groupId>
114     <artifactId>slf4j-log4j12</artifactId>
115     <version>1.7.2</version>
116     </dependency>
117    
118 alfonx 1391 </dependencies>
119 alfonx 1393
120     <build>
121     <plugins>
122    
123     <plugin>
124     <groupId>org.apache.maven.plugins</groupId>
125     <artifactId>maven-jar-plugin</artifactId>
126 alfonx 2231 <version>2.3.2</version>
127 alfonx 1393 <executions>
128     <execution>
129     <goals>
130     <goal>test-jar</goal>
131     <goal>jar</goal>
132     </goals>
133     </execution>
134     </executions>
135     </plugin>
136    
137     <plugin>
138     <groupId>org.apache.maven.plugins</groupId>
139     <artifactId>maven-resources-plugin</artifactId>
140 alfonx 2231 <version>2.5</version>
141 alfonx 1393 </plugin>
142    
143     <plugin>
144 mojays 2334 <groupId>org.apache.maven.plugins</groupId>
145     <artifactId>maven-source-plugin</artifactId>
146     <executions>
147     <execution>
148     <id>attach-sources</id>
149     <goals>
150     <goal>test-jar</goal>
151     <goal>jar</goal>
152     </goals>
153     </execution>
154     </executions>
155     </plugin>
156    
157 mojays 2341 <!-- ################# SONDERZEICHEN BEHANDLUNG ################## -->
158 mojays 2334 <plugin>
159 alfonx 2209 <artifactId>maven-antrun-plugin</artifactId>
160 alfonx 2232 <version>1.3</version>
161 alfonx 1393
162 alfonx 2209 <executions>
163     <execution>
164     <phase>compile</phase>
165     <goals>
166     <goal>run</goal>
167     </goals>
168     <configuration>
169 alfonx 1393
170 alfonx 2209 <tasks>
171     <taskdef resource="net/sf/antcontrib/antlib.xml">
172     <classpath refid="maven.dependency.classpath" />
173     </taskdef>
174 alfonx 1393
175 alfonx 2209 <typedef name="native2ascii"
176     classname="org.apache.tools.ant.taskdefs.optional.Native2Ascii">
177     <classpath refid="maven.dependency.classpath" />
178     </typedef>
179 alfonx 1393
180 alfonx 2209 <for param="file"
181     description="Alle .properties nach .propertieNative umbenennen">
182     <path>
183     <fileset dir="src" includes="**/*.properties" />
184     </path>
185     <sequential>
186     <move file="@{file}" overwrite="true" tofile="@{file}Native"
187     verbose="false" preservelastmodified="true" />
188     </sequential>
189     </for>
190 alfonx 1393
191 alfonx 2209 <native2ascii encoding="UTF8" src="src"
192     includes="**/*.propertiesNative" dest="src" ext=".properties" />
193 alfonx 1393
194 alfonx 2209 <for param="file">
195     <path>
196     <fileset dir="src" includes="**/*.propertiesNative" />
197     </path>
198     <sequential>
199     <delete file="@{file}" quiet="true" />
200     </sequential>
201     </for>
202 alfonx 1393
203 alfonx 2209 </tasks>
204     </configuration>
205     </execution>
206     </executions>
207     </plugin>
208 alfonx 1393
209 alfonx 2230 <plugin>
210     <groupId>org.apache.maven.plugins</groupId>
211     <artifactId>maven-compiler-plugin</artifactId>
212 alfonx 2243 <version>3.0</version>
213 alfonx 2230 <configuration>
214     <source>1.7</source>
215     <target>1.7</target>
216    
217     <showDeprecation>true</showDeprecation>
218     <showWarnings>true</showWarnings>
219     <executable>${env.JAVA_HOME}/bin/javac</executable>
220     <fork>true</fork>
221    
222     <excludes>
223     <exclude>**/.svn</exclude>
224     </excludes>
225     </configuration>
226     </plugin>
227 alfonx 1393 </plugins>
228 alfonx 1787 <pluginManagement>
229     <plugins>
230 alfonx 2221 <!--This plugin's configuration is used to store Eclipse m2e settings
231     only. It has no influence on the Maven build itself. -->
232 alfonx 1787 <plugin>
233     <groupId>org.eclipse.m2e</groupId>
234     <artifactId>lifecycle-mapping</artifactId>
235     <version>1.0.0</version>
236     <configuration>
237     <lifecycleMappingMetadata>
238     <pluginExecutions>
239     <pluginExecution>
240     <pluginExecutionFilter>
241     <groupId>
242     org.apache.maven.plugins
243     </groupId>
244     <artifactId>
245     maven-antrun-plugin
246     </artifactId>
247     <versionRange>
248     [1.3,)
249     </versionRange>
250     <goals>
251     <goal>run</goal>
252     </goals>
253     </pluginExecutionFilter>
254     <action>
255     <ignore></ignore>
256     </action>
257     </pluginExecution>
258     </pluginExecutions>
259     </lifecycleMappingMetadata>
260     </configuration>
261     </plugin>
262     </plugins>
263     </pluginManagement>
264 alfonx 2230
265    
266    
267    
268    
269    
270    
271 alfonx 1393 </build>
272    
273    
274    
275     <repositories>
276    
277     <repository>
278     <snapshots>
279     <enabled>false</enabled>
280     </snapshots>
281     <id>central</id>
282     <name>libs-releases</name>
283     <url>http://artifactory.wikisquare.de/artifactory/libs-releases</url>
284     </repository>
285    
286     <repository>
287     <snapshots />
288     <id>snapshots</id>
289     <name>libs-snapshots</name>
290     <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots
291     </url>
292     </repository>
293    
294     </repositories>
295    
296     <distributionManagement>
297    
298     <repository>
299     <id>artifactory.wikisquare.de</id>
300     <name>artifactory.wikisquare.de-releases</name>
301     <url>http://artifactory.wikisquare.de/artifactory/libs-releases-local
302     </url>
303     </repository>
304    
305     <snapshotRepository>
306     <id>artifactory.wikisquare.de</id>
307     <name>artifactory.wikisquare.de-snapshots</name>
308     <url>http://artifactory.wikisquare.de/artifactory/libs-snapshots-local
309     </url>
310     </snapshotRepository>
311    
312     </distributionManagement>
313 mojays 2229
314 alfonx 2274 <profiles>
315     <profile>
316     <id>tweakJdk7Path</id>
317 alfonx 2233
318 alfonx 2274 <build>
319     <plugins>
320 alfonx 2233
321 alfonx 2274 <plugin>
322     <groupId>org.apache.maven.plugins</groupId>
323     <artifactId>maven-compiler-plugin</artifactId>
324     <version>3.0</version>
325     <configuration>
326     <source>1.7</source>
327     <target>1.7</target>
328 alfonx 2233
329 alfonx 2274 <showDeprecation>true</showDeprecation>
330     <showWarnings>true</showWarnings>
331     <executable>/usr/lib/jvm/java-7-oracle/bin/javac</executable>
332     <fork>true</fork>
333 alfonx 2233
334 alfonx 2274 <excludes>
335     <exclude>**/.svn</exclude>
336     </excludes>
337     </configuration>
338     </plugin>
339     </plugins>
340 alfonx 2233
341    
342 alfonx 2274 </build>
343 alfonx 2233
344 alfonx 2274 </profile>
345     </profiles>
346 alfonx 1386 </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