2 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
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> |
<modelVersion>4.0.0</modelVersion> |
4 |
|
|
|
<groupId>de.schmitzm</groupId> |
|
5 |
<artifactId>schmitzm-gt</artifactId> |
<artifactId>schmitzm-gt</artifactId> |
|
<version>2.7-SNAPSHOT</version> |
|
6 |
<packaging>jar</packaging> |
<packaging>jar</packaging> |
7 |
|
|
8 |
<parent> |
<parent> |
9 |
<groupId>de.schmitzm</groupId> |
<groupId>de.schmitzm</groupId> |
10 |
<artifactId>schmitzm-parent</artifactId> |
<artifactId>schmitzm-parent</artifactId> |
11 |
<version>2.7-SNAPSHOT</version> |
<version>2.8-SNAPSHOT</version> |
12 |
<relativePath>../schmitzm-parent/pom.xml</relativePath> |
<relativePath>../schmitzm-parent/pom.xml</relativePath> |
13 |
</parent> |
</parent> |
14 |
|
|
15 |
<name>schmitzm-gt</name> |
<name>schmitzm-gt</name> |
|
<url>http://maven.apache.org</url> |
|
16 |
|
|
17 |
<dependencies> |
<dependencies> |
18 |
|
|
19 |
<dependency> |
<dependency> |
20 |
|
<!-- Hier kommt auch ein aktuellen postgresql jdbc jar --> |
21 |
|
<groupId>de.schmitzm</groupId> |
22 |
|
<artifactId>schmitzm-db</artifactId> |
23 |
|
<version>${project.version}</version> |
24 |
|
<type>jar</type> |
25 |
|
<scope>compile</scope> |
26 |
|
</dependency> |
27 |
|
|
28 |
|
<dependency> |
29 |
<groupId>de.schmitzm</groupId> |
<groupId>de.schmitzm</groupId> |
30 |
<artifactId>schmitzm-core</artifactId> |
<artifactId>schmitzm-core</artifactId> |
31 |
<version>${project.version}</version> |
<version>${project.version}</version> |
164 |
<version>${geotools.version}</version> |
<version>${geotools.version}</version> |
165 |
<type>jar</type> |
<type>jar</type> |
166 |
<scope>compile</scope> |
<scope>compile</scope> |
167 |
|
<exclusions> |
168 |
|
<exclusion> |
169 |
|
<!-- Das kommt ueber schmitzm-db --> |
170 |
|
<groupId>postgresql</groupId> |
171 |
|
<artifactId>postgresql</artifactId> |
172 |
|
</exclusion> |
173 |
|
</exclusions> |
174 |
</dependency> |
</dependency> |
175 |
|
|
176 |
|
|
254 |
</profile> |
</profile> |
255 |
</profiles> |
</profiles> |
256 |
|
|
257 |
|
<build> |
258 |
|
<pluginManagement> |
259 |
|
<plugins> |
260 |
|
<!--This plugin's configuration is used to store Eclipse m2e settings |
261 |
|
only. It has no influence on the Maven build itself. --> |
262 |
|
<plugin> |
263 |
|
<groupId>org.eclipse.m2e</groupId> |
264 |
|
<artifactId>lifecycle-mapping</artifactId> |
265 |
|
<version>1.0.0</version> |
266 |
|
<configuration> |
267 |
|
<lifecycleMappingMetadata> |
268 |
|
<pluginExecutions> |
269 |
|
<pluginExecution> |
270 |
|
<pluginExecutionFilter> |
271 |
|
<groupId> |
272 |
|
org.codehaus.mojo |
273 |
|
</groupId> |
274 |
|
<artifactId> |
275 |
|
exec-maven-plugin |
276 |
|
</artifactId> |
277 |
|
<versionRange> |
278 |
|
[1.2,) |
279 |
|
</versionRange> |
280 |
|
<goals> |
281 |
|
<goal>java</goal> |
282 |
|
</goals> |
283 |
|
</pluginExecutionFilter> |
284 |
|
<action> |
285 |
|
<ignore></ignore> |
286 |
|
</action> |
287 |
|
</pluginExecution> |
288 |
|
</pluginExecutions> |
289 |
|
</lifecycleMappingMetadata> |
290 |
|
</configuration> |
291 |
|
</plugin> |
292 |
|
</plugins> |
293 |
|
</pluginManagement> |
294 |
|
</build> |
295 |
</project> |
</project> |