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-core</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-core</name> |
18 |
<url>http://maven.apache.org</url> |
19 |
|
20 |
<dependencies> |
21 |
<dependency> |
22 |
<groupId>javax.media</groupId> |
23 |
<artifactId>jai_core</artifactId> |
24 |
<version>1.1.3</version> |
25 |
<type>jar</type> |
26 |
<scope>compile</scope> |
27 |
</dependency> |
28 |
|
29 |
<dependency> |
30 |
<groupId>javax.jnlp</groupId> |
31 |
<artifactId>jnlp</artifactId> |
32 |
<version>1.6</version> |
33 |
<type>jar</type> |
34 |
<scope>compile</scope> |
35 |
</dependency> |
36 |
|
37 |
<dependency> |
38 |
<groupId>javax.mail</groupId> |
39 |
<artifactId>mail</artifactId> |
40 |
<version>1.4.1</version> |
41 |
<type>jar</type> |
42 |
<scope>compile</scope> |
43 |
</dependency> |
44 |
|
45 |
<dependency> |
46 |
<!-- NOT USE 2.0.1 for now... --> |
47 |
<groupId>commons-io</groupId> |
48 |
<artifactId>commons-io</artifactId> |
49 |
<version>1.4</version> |
50 |
<type>jar</type> |
51 |
<scope>compile</scope> |
52 |
</dependency> |
53 |
|
54 |
<dependency> |
55 |
<groupId>com.miglayout</groupId> |
56 |
<artifactId>miglayout</artifactId> |
57 |
<version>3.7.4</version> |
58 |
<classifier>swing</classifier> |
59 |
<scope>compile</scope> |
60 |
</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> |
71 |
<groupId>net.jini</groupId> |
72 |
<artifactId>jini-ext</artifactId> |
73 |
<version>2.1</version> |
74 |
<type>jar</type> |
75 |
<scope>compile</scope> |
76 |
</dependency> |
77 |
|
78 |
<dependency> |
79 |
<groupId>org.jdom</groupId> |
80 |
<artifactId>jdom</artifactId> |
81 |
<version>1.1</version> |
82 |
</dependency> |
83 |
|
84 |
<dependency> |
85 |
<groupId>commons-cli</groupId> |
86 |
<artifactId>commons-cli</artifactId> |
87 |
<version>1.2</version> |
88 |
<type>jar</type> |
89 |
<scope>compile</scope> |
90 |
</dependency> |
91 |
|
92 |
<!-- |
93 |
<dependency> |
94 |
<groupId>net.sourceforge.jexcelapi</groupId> |
95 |
<artifactId>jxl</artifactId> |
96 |
<version>2.6.12</version> |
97 |
<scope>test</scope> |
98 |
</dependency> |
99 |
|
100 |
<dependency> |
101 |
<groupId>org.apache.poi</groupId> |
102 |
<artifactId>poi</artifactId> |
103 |
<version>3.7</version> |
104 |
<type>jar</type> |
105 |
<scope>test</scope> |
106 |
</dependency> |
107 |
--> |
108 |
<dependency> |
109 |
<!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene den gp export --> |
110 |
<groupId>commons-lang</groupId> |
111 |
<artifactId>commons-lang</artifactId> |
112 |
<version>2.3</version> |
113 |
<!-- <version>2.4</version>--> |
114 |
<type>jar</type> |
115 |
<scope>compile</scope> |
116 |
</dependency> |
117 |
</dependencies> |
118 |
|
119 |
<build> |
120 |
<plugins> |
121 |
<plugin> |
122 |
<groupId>org.apache.maven.plugins</groupId> |
123 |
<artifactId>maven-compiler-plugin</artifactId> |
124 |
<version>2.3.2</version> |
125 |
<configuration> |
126 |
<source>1.6</source> |
127 |
<target>1.6</target> |
128 |
<excludes> |
129 |
<exclude>**/.svn</exclude> |
130 |
</excludes> |
131 |
</configuration> |
132 |
</plugin> |
133 |
</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> |
171 |
|
172 |
|
173 |
<profiles> |
174 |
<profile> |
175 |
<id>resourceOperationRemove</id> |
176 |
<!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove" |
177 |
the build will remove any lines in the resource bundes that are tagged with |
178 |
REMOVEME_ --> |
179 |
<build> |
180 |
<plugins> |
181 |
<plugin> |
182 |
<groupId>org.codehaus.mojo</groupId> |
183 |
<artifactId>exec-maven-plugin</artifactId> |
184 |
<version>1.2</version> |
185 |
<executions> |
186 |
<execution> |
187 |
<phase>generate-sources</phase> |
188 |
<goals> |
189 |
<goal>java</goal> |
190 |
</goals> |
191 |
<configuration> |
192 |
<mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass> |
193 |
<arguments> |
194 |
<argument>-s</argument> |
195 |
<argument>${basedir}/src/main/resources</argument> |
196 |
<argument>-b</argument> |
197 |
<argument>de.schmitzm.swing.resource.locales.SwingResourceBundle;de.schmitzm.lang.resource.locales.LangResourceBundle;de.schmitzm.net.mail.resource.locales.MailResourceBundle;de.schmitzm.data.resource.locales.DataResourceBundle |
198 |
</argument> |
199 |
</arguments> |
200 |
</configuration> |
201 |
</execution> |
202 |
</executions> |
203 |
</plugin> |
204 |
</plugins> |
205 |
</build> |
206 |
</profile> |
207 |
</profiles> |
208 |
|
209 |
|
210 |
</project> |