14 |
<properties> |
<properties> |
15 |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
16 |
<schmitzm.version>${project.version}</schmitzm.version> |
<schmitzm.version>${project.version}</schmitzm.version> |
17 |
<!-- <geotools.version>8-SNAPSHOT</geotools.version> --> |
<!-- <geotools.version>8-SNAPSHOT</geotools.version> --> |
18 |
<geotools.version>2.7.5</geotools.version> |
<geotools.version>2.7.5</geotools.version> |
19 |
</properties> |
</properties> |
20 |
|
|
21 |
<issueManagement> |
<issueManagement> |
100 |
<type>jar</type> |
<type>jar</type> |
101 |
<scope>test</scope> |
<scope>test</scope> |
102 |
</dependency> |
</dependency> |
103 |
|
|
104 |
<dependency> |
<dependency> |
105 |
<!-- Logging with log4j. Die MVN dependency fuer 1.2.15 ist defekt. downgraded --> |
<!-- Logging with log4j. Die MVN dependency fuer 1.2.15 ist defekt. downgraded --> |
106 |
<!-- to 1.2.14 http://jira.codehaus.org/browse/MEV-649 --> |
<!-- to 1.2.14 http://jira.codehaus.org/browse/MEV-649 --> |
107 |
<groupId>log4j</groupId> |
<groupId>log4j</groupId> |
108 |
<artifactId>log4j</artifactId> |
<artifactId>log4j</artifactId> |
109 |
<version>1.2.14</version> |
<version>1.2.14</version> |
116 |
<plugin> |
<plugin> |
117 |
<groupId>org.apache.maven.plugins</groupId> |
<groupId>org.apache.maven.plugins</groupId> |
118 |
<artifactId>maven-jar-plugin</artifactId> |
<artifactId>maven-jar-plugin</artifactId> |
119 |
<version>2.3.1</version> |
<version>2.3.2</version> |
120 |
<executions> |
<executions> |
121 |
<execution> |
<execution> |
122 |
<goals> |
<goals> |
130 |
<plugin> |
<plugin> |
131 |
<groupId>org.apache.maven.plugins</groupId> |
<groupId>org.apache.maven.plugins</groupId> |
132 |
<artifactId>maven-resources-plugin</artifactId> |
<artifactId>maven-resources-plugin</artifactId> |
133 |
<version>2.4.2</version> |
<version>2.5</version> |
|
</plugin> |
|
|
|
|
|
<plugin> |
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
<artifactId>maven-compiler-plugin</artifactId> |
|
|
<version>2.5.1</version> |
|
|
<configuration> |
|
|
<source>1.7</source> |
|
|
<target>1.7</target> |
|
|
<excludes> |
|
|
<exclude>**/.svn</exclude> <!-- ??? --> |
|
|
</excludes> |
|
|
</configuration> |
|
134 |
</plugin> |
</plugin> |
135 |
|
|
136 |
<plugin> |
<plugin> |
184 |
</executions> |
</executions> |
185 |
</plugin> |
</plugin> |
186 |
|
|
187 |
|
<plugin> |
188 |
|
<groupId>org.apache.maven.plugins</groupId> |
189 |
|
<artifactId>maven-compiler-plugin</artifactId> |
190 |
|
<version>3.0</version> |
191 |
|
<configuration> |
192 |
|
<source>1.7</source> |
193 |
|
<target>1.7</target> |
194 |
|
|
195 |
|
<showDeprecation>true</showDeprecation> |
196 |
|
<showWarnings>true</showWarnings> |
197 |
|
<executable>${env.JAVA_HOME}/bin/javac</executable> |
198 |
|
<fork>true</fork> |
199 |
|
|
200 |
|
<excludes> |
201 |
|
<exclude>**/.svn</exclude> |
202 |
|
</excludes> |
203 |
|
</configuration> |
204 |
|
</plugin> |
205 |
</plugins> |
</plugins> |
206 |
<pluginManagement> |
<pluginManagement> |
207 |
<plugins> |
<plugins> |
208 |
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
<!--This plugin's configuration is used to store Eclipse m2e settings |
209 |
|
only. It has no influence on the Maven build itself. --> |
210 |
<plugin> |
<plugin> |
211 |
<groupId>org.eclipse.m2e</groupId> |
<groupId>org.eclipse.m2e</groupId> |
212 |
<artifactId>lifecycle-mapping</artifactId> |
<artifactId>lifecycle-mapping</artifactId> |
239 |
</plugin> |
</plugin> |
240 |
</plugins> |
</plugins> |
241 |
</pluginManagement> |
</pluginManagement> |
242 |
|
|
243 |
|
|
244 |
|
|
245 |
|
|
246 |
|
|
247 |
|
|
248 |
|
|
249 |
</build> |
</build> |
250 |
|
|
251 |
|
|
288 |
</snapshotRepository> |
</snapshotRepository> |
289 |
|
|
290 |
</distributionManagement> |
</distributionManagement> |
291 |
|
|
292 |
|
<profiles> |
293 |
|
<profile> |
294 |
|
<id>tweakJdk7Path</id> |
295 |
|
|
296 |
|
<build> |
297 |
|
<plugins> |
298 |
|
|
299 |
|
<plugin> |
300 |
|
<groupId>org.apache.maven.plugins</groupId> |
301 |
|
<artifactId>maven-compiler-plugin</artifactId> |
302 |
|
<version>3.0</version> |
303 |
|
<configuration> |
304 |
|
<source>1.7</source> |
305 |
|
<target>1.7</target> |
306 |
|
|
307 |
|
<showDeprecation>true</showDeprecation> |
308 |
|
<showWarnings>true</showWarnings> |
309 |
|
<executable>/usr/lib/jvm/java-7-oracle/bin/javac</executable> |
310 |
|
<fork>true</fork> |
311 |
|
|
312 |
|
<excludes> |
313 |
|
<exclude>**/.svn</exclude> |
314 |
|
</excludes> |
315 |
|
</configuration> |
316 |
|
</plugin> |
317 |
|
</plugins> |
318 |
|
|
319 |
|
|
320 |
|
</build> |
321 |
|
|
322 |
|
</profile> |
323 |
|
</profiles> |
324 |
</project> |
</project> |