4 |
|
|
5 |
<groupId>de.schmitzm</groupId> |
<groupId>de.schmitzm</groupId> |
6 |
<artifactId>schmitzm-core</artifactId> |
<artifactId>schmitzm-core</artifactId> |
7 |
<version>2.5-SNAPSHOT</version> |
<version>2.6-KECK</version> |
8 |
<packaging>jar</packaging> |
<packaging>jar</packaging> |
9 |
|
|
10 |
<parent> |
<parent> |
11 |
<groupId>de.schmitzm</groupId> |
<groupId>de.schmitzm</groupId> |
12 |
<artifactId>schmitzm-parent</artifactId> |
<artifactId>schmitzm-parent</artifactId> |
13 |
<version>2.5-SNAPSHOT</version> |
<version>2.6-KECK</version> |
14 |
<relativePath>../schmitzm-parent/pom.xml</relativePath> |
<relativePath>../schmitzm-parent/pom.xml</relativePath> |
15 |
</parent> |
</parent> |
16 |
|
|
54 |
<dependency> |
<dependency> |
55 |
<groupId>com.miglayout</groupId> |
<groupId>com.miglayout</groupId> |
56 |
<artifactId>miglayout</artifactId> |
<artifactId>miglayout</artifactId> |
57 |
<version>3.7.3</version> |
<version>3.7.4</version> |
58 |
<classifier>swing</classifier> |
<classifier>swing</classifier> |
59 |
<scope>compile</scope> |
<scope>compile</scope> |
60 |
</dependency> |
</dependency> |
61 |
|
|
62 |
|
<dependency> |
63 |
|
<groupId>com.toedter</groupId> |
64 |
|
<artifactId>jcalendar</artifactId> |
65 |
|
<version>1.3.3</version> |
66 |
|
<type>jar</type> |
67 |
|
<scope>compile</scope> |
68 |
|
</dependency> |
69 |
|
|
70 |
<dependency> |
<dependency> |
71 |
<groupId>net.jini</groupId> |
<groupId>net.jini</groupId> |
121 |
<plugin> |
<plugin> |
122 |
<groupId>org.apache.maven.plugins</groupId> |
<groupId>org.apache.maven.plugins</groupId> |
123 |
<artifactId>maven-compiler-plugin</artifactId> |
<artifactId>maven-compiler-plugin</artifactId> |
124 |
<version>2.2</version> |
<version>2.3.2</version> |
125 |
<configuration> |
<configuration> |
126 |
<source>1.6</source> |
<source>1.6</source> |
127 |
<target>1.6</target> |
<target>1.6</target> |
128 |
<excludes> |
<excludes> |
129 |
<exclude>**/.svn</exclude> ??? |
<exclude>**/.svn</exclude> |
130 |
</excludes> |
</excludes> |
131 |
</configuration> |
</configuration> |
132 |
</plugin> |
</plugin> |
133 |
</plugins> |
</plugins> |
134 |
|
|
135 |
|
<pluginManagement> |
136 |
|
<plugins> |
137 |
|
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> |
138 |
|
<plugin> |
139 |
|
<groupId>org.eclipse.m2e</groupId> |
140 |
|
<artifactId>lifecycle-mapping</artifactId> |
141 |
|
<version>1.0.0</version> |
142 |
|
<configuration> |
143 |
|
<lifecycleMappingMetadata> |
144 |
|
<pluginExecutions> |
145 |
|
<pluginExecution> |
146 |
|
<pluginExecutionFilter> |
147 |
|
<groupId> |
148 |
|
org.apache.maven.plugins |
149 |
|
</groupId> |
150 |
|
<artifactId> |
151 |
|
maven-antrun-plugin |
152 |
|
</artifactId> |
153 |
|
<versionRange> |
154 |
|
[1.3,) |
155 |
|
</versionRange> |
156 |
|
<goals> |
157 |
|
<goal>run</goal> |
158 |
|
</goals> |
159 |
|
</pluginExecutionFilter> |
160 |
|
<action> |
161 |
|
<ignore></ignore> |
162 |
|
</action> |
163 |
|
</pluginExecution> |
164 |
|
</pluginExecutions> |
165 |
|
</lifecycleMappingMetadata> |
166 |
|
</configuration> |
167 |
|
</plugin> |
168 |
|
</plugins> |
169 |
|
</pluginManagement> |
170 |
</build> |
</build> |
171 |
|
|
172 |
|
|