1 |
<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/xsd/maven-4.0.0.xsd"> |
3 |
<modelVersion>4.0.0</modelVersion> |
4 |
|
5 |
<groupId>de.schmitzm</groupId> |
6 |
<artifactId>schmitzm-adresses</artifactId> |
7 |
<version>2.6-KECK</version> |
8 |
<packaging>jar</packaging> |
9 |
|
10 |
<parent> |
11 |
<groupId>de.schmitzm</groupId> |
12 |
<artifactId>schmitzm-parent</artifactId> |
13 |
<version>2.6-KECK</version> |
14 |
<relativePath>../schmitzm-parent/pom.xml</relativePath> |
15 |
</parent> |
16 |
|
17 |
<name>schmitzm-adresses</name> |
18 |
<url>http://maven.apache.org</url> |
19 |
<dependencies> |
20 |
<dependency> |
21 |
<groupId>net.sourceforge.jexcelapi</groupId> |
22 |
<artifactId>jxl</artifactId> |
23 |
<version>2.6.12</version> |
24 |
<type>jar</type> |
25 |
<scope>compile</scope> |
26 |
</dependency> |
27 |
<dependency> |
28 |
<groupId>de.schmitzm</groupId> |
29 |
<artifactId>schmitzm-core</artifactId> |
30 |
<version>${project.version}</version> |
31 |
<type>test-jar</type> |
32 |
<scope>test</scope> |
33 |
</dependency> |
34 |
<dependency> |
35 |
<groupId>de.schmitzm</groupId> |
36 |
<artifactId>schmitzm-core</artifactId> |
37 |
<version>${project.version}</version> |
38 |
<type>jar</type> |
39 |
<scope>compile</scope> |
40 |
</dependency> |
41 |
</dependencies> |
42 |
|
43 |
<build> |
44 |
<pluginManagement> |
45 |
<plugins> |
46 |
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
47 |
<plugin> |
48 |
<groupId>org.eclipse.m2e</groupId> |
49 |
<artifactId>lifecycle-mapping</artifactId> |
50 |
<version>1.0.0</version> |
51 |
<configuration> |
52 |
<lifecycleMappingMetadata> |
53 |
<pluginExecutions> |
54 |
<pluginExecution> |
55 |
<pluginExecutionFilter> |
56 |
<groupId> |
57 |
org.apache.maven.plugins |
58 |
</groupId> |
59 |
<artifactId> |
60 |
maven-antrun-plugin |
61 |
</artifactId> |
62 |
<versionRange> |
63 |
[1.3,) |
64 |
</versionRange> |
65 |
<goals> |
66 |
<goal>run</goal> |
67 |
</goals> |
68 |
</pluginExecutionFilter> |
69 |
<action> |
70 |
<ignore></ignore> |
71 |
</action> |
72 |
</pluginExecution> |
73 |
</pluginExecutions> |
74 |
</lifecycleMappingMetadata> |
75 |
</configuration> |
76 |
</plugin> |
77 |
</plugins> |
78 |
</pluginManagement> |
79 |
</build> |
80 |
</project> |