4 |
|
|
5 |
<groupId>de.schmitzm</groupId> |
<groupId>de.schmitzm</groupId> |
6 |
<artifactId>schmitzm-core</artifactId> |
<artifactId>schmitzm-core</artifactId> |
7 |
<version>2.6-SNAPSHOT</version> |
<version>2.8-SNAPSHOT</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.6-SNAPSHOT</version> |
<version>2.8-SNAPSHOT</version> |
14 |
<relativePath>../schmitzm-parent/pom.xml</relativePath> |
<relativePath>../schmitzm-parent/pom.xml</relativePath> |
15 |
</parent> |
</parent> |
16 |
|
|
25 |
<type>jar</type> |
<type>jar</type> |
26 |
<scope>compile</scope> |
<scope>compile</scope> |
27 |
</dependency> |
</dependency> |
28 |
|
|
29 |
<dependency> |
<dependency> |
30 |
<groupId>javax.jnlp</groupId> |
<groupId>javax.jnlp</groupId> |
31 |
<artifactId>jnlp</artifactId> |
<artifactId>jnlp</artifactId> |
43 |
</dependency> |
</dependency> |
44 |
|
|
45 |
<dependency> |
<dependency> |
46 |
|
<!-- NOT USE 2.0.1 for now... --> |
47 |
<groupId>commons-io</groupId> |
<groupId>commons-io</groupId> |
48 |
<artifactId>commons-io</artifactId> |
<artifactId>commons-io</artifactId> |
49 |
<version>1.4</version> |
<version>1.4</version> |
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>org.supercsv</groupId> --> |
64 |
|
<!-- <artifactId>supercsv</artifactId> --> |
65 |
|
<!-- <version>1.52</version> --> |
66 |
|
<!-- </dependency> --> |
67 |
|
|
68 |
|
<dependency> |
69 |
|
<groupId>com.toedter</groupId> |
70 |
|
<artifactId>jcalendar</artifactId> |
71 |
|
<version>1.3.3</version> |
72 |
|
<type>jar</type> |
73 |
|
<scope>compile</scope> |
74 |
|
</dependency> |
75 |
|
|
76 |
<dependency> |
<dependency> |
77 |
<groupId>net.jini</groupId> |
<groupId>net.jini</groupId> |
78 |
<artifactId>jini-ext</artifactId> |
<artifactId>jini-ext</artifactId> |
95 |
<scope>compile</scope> |
<scope>compile</scope> |
96 |
</dependency> |
</dependency> |
97 |
|
|
|
<!-- |
|
|
<dependency> |
|
|
<groupId>net.sourceforge.jexcelapi</groupId> |
|
|
<artifactId>jxl</artifactId> |
|
|
<version>2.6.12</version> |
|
|
<scope>test</scope> |
|
|
</dependency> |
|
|
|
|
|
<dependency> |
|
|
<groupId>org.apache.poi</groupId> |
|
|
<artifactId>poi</artifactId> |
|
|
<version>3.7</version> |
|
|
<type>jar</type> |
|
|
<scope>test</scope> |
|
|
</dependency> |
|
|
--> |
|
98 |
<dependency> |
<dependency> |
99 |
|
<!-- Kommt in version 2.3 von gt-swing und sonst verwirren die zwei versionene |
100 |
|
den gp export --> |
101 |
<groupId>commons-lang</groupId> |
<groupId>commons-lang</groupId> |
102 |
<artifactId>commons-lang</artifactId> |
<artifactId>commons-lang</artifactId> |
103 |
<version>2.4</version> |
<version>2.3</version> |
104 |
|
<!-- <version>2.4</version> --> |
105 |
<type>jar</type> |
<type>jar</type> |
106 |
<scope>compile</scope> |
<scope>compile</scope> |
107 |
</dependency> |
</dependency> |
108 |
|
<dependency> |
109 |
|
<groupId>org.apache.solr</groupId> |
110 |
|
<artifactId>solr-core</artifactId> |
111 |
|
<version>3.6.0</version> |
112 |
|
</dependency> |
113 |
|
|
114 |
</dependencies> |
</dependencies> |
115 |
|
|
116 |
<build> |
<build> |
118 |
<plugin> |
<plugin> |
119 |
<groupId>org.apache.maven.plugins</groupId> |
<groupId>org.apache.maven.plugins</groupId> |
120 |
<artifactId>maven-compiler-plugin</artifactId> |
<artifactId>maven-compiler-plugin</artifactId> |
121 |
<version>2.2</version> |
<version>2.3.2</version> |
122 |
<configuration> |
<configuration> |
123 |
<source>1.6</source> |
<source>1.6</source> |
124 |
<target>1.6</target> |
<target>1.6</target> |
125 |
<excludes> |
<excludes> |
126 |
<exclude>**/.svn</exclude> ??? |
<exclude>**/.svn</exclude> |
127 |
</excludes> |
</excludes> |
128 |
</configuration> |
</configuration> |
129 |
</plugin> |
</plugin> |
130 |
</plugins> |
</plugins> |
131 |
|
|
132 |
|
<pluginManagement> |
133 |
|
<plugins> |
134 |
|
<!--This plugin's configuration is used to store Eclipse m2e settings |
135 |
|
only. It has no influence on the Maven build itself. --> |
136 |
|
<plugin> |
137 |
|
<groupId>org.eclipse.m2e</groupId> |
138 |
|
<artifactId>lifecycle-mapping</artifactId> |
139 |
|
<version>1.0.0</version> |
140 |
|
<configuration> |
141 |
|
<lifecycleMappingMetadata> |
142 |
|
<pluginExecutions> |
143 |
|
<pluginExecution> |
144 |
|
<pluginExecutionFilter> |
145 |
|
<groupId> |
146 |
|
org.codehaus.mojo |
147 |
|
</groupId> |
148 |
|
<artifactId> |
149 |
|
exec-maven-plugin |
150 |
|
</artifactId> |
151 |
|
<versionRange> |
152 |
|
[1.2,) |
153 |
|
</versionRange> |
154 |
|
<goals> |
155 |
|
<goal>java</goal> |
156 |
|
</goals> |
157 |
|
</pluginExecutionFilter> |
158 |
|
<action> |
159 |
|
<ignore></ignore> |
160 |
|
</action> |
161 |
|
</pluginExecution> |
162 |
|
</pluginExecutions> |
163 |
|
</lifecycleMappingMetadata> |
164 |
|
</configuration> |
165 |
|
</plugin> |
166 |
|
</plugins> |
167 |
|
</pluginManagement> |
168 |
</build> |
</build> |
169 |
|
|
170 |
|
|
171 |
|
<profiles> |
172 |
|
<profile> |
173 |
|
<id>resourceOperationRemove</id> |
174 |
|
<!-- When this profile is activated (e.g with "mavn install -P resourceOperationRemove" |
175 |
|
the build will remove any lines in the resource bundes that are tagged with |
176 |
|
REMOVEME_ --> |
177 |
|
<build> |
178 |
|
<plugins> |
179 |
|
<plugin> |
180 |
|
<groupId>org.codehaus.mojo</groupId> |
181 |
|
<artifactId>exec-maven-plugin</artifactId> |
182 |
|
<version>1.2</version> |
183 |
|
<executions> |
184 |
|
<execution> |
185 |
|
<phase>generate-sources</phase> |
186 |
|
<goals> |
187 |
|
<goal>java</goal> |
188 |
|
</goals> |
189 |
|
<configuration> |
190 |
|
<mainClass>de.schmitzm.lang.ResourceProviderOperator</mainClass> |
191 |
|
<arguments> |
192 |
|
<argument>-s</argument> |
193 |
|
<argument>${basedir}/src/main/resources</argument> |
194 |
|
<argument>-b</argument> |
195 |
|
<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 |
196 |
|
</argument> |
197 |
|
</arguments> |
198 |
|
</configuration> |
199 |
|
</execution> |
200 |
|
</executions> |
201 |
|
</plugin> |
202 |
|
</plugins> |
203 |
|
</build> |
204 |
|
</profile> |
205 |
|
</profiles> |
206 |
|
|
207 |
|
|
208 |
</project> |
</project> |