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.3.2</version> |
|
|
<configuration> |
|
|
<source>1.6</source> |
|
|
<target>1.6</target> |
|
|
<excludes> |
|
|
<exclude>**/.svn</exclude> <!-- ??? --> |
|
|
</excludes> |
|
|
</configuration> |
|
134 |
</plugin> |
</plugin> |
135 |
|
|
136 |
<plugin> |
<plugin> |
137 |
<artifactId>maven-antrun-plugin</artifactId> |
<artifactId>maven-antrun-plugin</artifactId> |
138 |
<version>1.3</version> |
<version>1.7</version> |
139 |
|
|
140 |
<executions> |
<executions> |
141 |
<execution> |
<execution> |
184 |
</executions> |
</executions> |
185 |
</plugin> |
</plugin> |
186 |
|
|
187 |
|
<plugin> |
188 |
|
<groupId>org.apache.maven.plugins</groupId> |
189 |
|
<artifactId>maven-compiler-plugin</artifactId> |
190 |
|
<version>2.5.1</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 |
</project> |
</project> |