1 | <!-- |
---|
2 | This file is part of the FLARM®-Radar Project. |
---|
3 | |
---|
4 | Copyright by the Authors |
---|
5 | |
---|
6 | Licensed under the Apache License, Version 2.0 (the "License"); |
---|
7 | you may not use this file except in compliance with the License. |
---|
8 | You may obtain a copy of the License at |
---|
9 | |
---|
10 | http://www.apache.org/licenses/LICENSE-2.0 |
---|
11 | |
---|
12 | Unless required by applicable law or agreed to in writing, software |
---|
13 | distributed under the License is distributed on an "AS IS" BASIS, |
---|
14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
---|
15 | See the License for the specific language governing permissions and |
---|
16 | limitations under the License. |
---|
17 | |
---|
18 | Project Website: www.flarmradar.ch |
---|
19 | Email: info@flarmradar.ch |
---|
20 | Authors: |
---|
21 | 2012-2014 Simon Moser |
---|
22 | 2013-2014 Dominic Spreitz |
---|
23 | 2014-2014 Giorgio Tresoldi |
---|
24 | --> |
---|
25 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
---|
26 | <modelVersion>4.0.0</modelVersion> |
---|
27 | <groupId>flarmradar</groupId> |
---|
28 | <artifactId>ch.netzschmiede.flarmradar.all</artifactId> |
---|
29 | <version>1.2.0</version> |
---|
30 | <packaging>pom</packaging> |
---|
31 | <name>ch.netzschmiede.flarmradar.all</name> |
---|
32 | <description>Aggregator module for Project Flarm-Radar</description> |
---|
33 | <url>http://www.flarmradar.ch</url> |
---|
34 | <scm> |
---|
35 | <connection>scm:svn:https://secure.netzschmiede.ch/svn/flarmradar/core/trunk</connection> |
---|
36 | <developerConnection>scm:svn:https://secure.netzschmiede.ch/svn/flarmradar/core/trunk</developerConnection> |
---|
37 | <url>https://secure.netzschmiede.ch/svn/flarmradar/core/trunk</url> |
---|
38 | </scm> |
---|
39 | |
---|
40 | <properties> |
---|
41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
---|
42 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
---|
43 | </properties> |
---|
44 | |
---|
45 | <!-- when this module is build, then build also the following ones --> |
---|
46 | <modules> |
---|
47 | <module>api</module> |
---|
48 | <module>lib</module> |
---|
49 | <module>srv</module> |
---|
50 | <module>web</module> |
---|
51 | <module>assembly</module> |
---|
52 | <module>client</module> |
---|
53 | </modules> |
---|
54 | |
---|
55 | <repositories> |
---|
56 | <repository> |
---|
57 | <id>ZK CE</id> |
---|
58 | <name>ZK CE Repository</name> |
---|
59 | <url>http://mavensync.zkoss.org/maven2</url> |
---|
60 | </repository> |
---|
61 | </repositories> |
---|
62 | |
---|
63 | <!-- define version numbers for all used libraries (own and 3rdparty) here --> |
---|
64 | <dependencyManagement> |
---|
65 | <dependencies> |
---|
66 | <!-- our own modules --> |
---|
67 | <dependency> |
---|
68 | <groupId>flarmradar</groupId> |
---|
69 | <artifactId>ch.netzschmiede.flarmradar.api</artifactId> |
---|
70 | <version>${project.version}</version> |
---|
71 | <type>pom</type> |
---|
72 | </dependency> |
---|
73 | <dependency> |
---|
74 | <groupId>flarmradar</groupId> |
---|
75 | <artifactId>ch.netzschmiede.flarmradar.api.core</artifactId> |
---|
76 | <version>${project.version}</version> |
---|
77 | </dependency> |
---|
78 | <dependency> |
---|
79 | <groupId>flarmradar</groupId> |
---|
80 | <artifactId>ch.netzschmiede.flarmradar.lib</artifactId> |
---|
81 | <version>${project.version}</version> |
---|
82 | <type>pom</type> |
---|
83 | </dependency> |
---|
84 | <dependency> |
---|
85 | <groupId>flarmradar</groupId> |
---|
86 | <artifactId>ch.netzschmiede.flarmradar.lib.log</artifactId> |
---|
87 | <version>${project.version}</version> |
---|
88 | </dependency> |
---|
89 | <dependency> |
---|
90 | <groupId>flarmradar</groupId> |
---|
91 | <artifactId>ch.netzschmiede.flarmradar.lib.remote</artifactId> |
---|
92 | <version>${project.version}</version> |
---|
93 | </dependency> |
---|
94 | <dependency> |
---|
95 | <groupId>flarmradar</groupId> |
---|
96 | <artifactId>ch.netzschmiede.flarmradar.lib.upgrade</artifactId> |
---|
97 | <version>${project.version}</version> |
---|
98 | </dependency> |
---|
99 | <dependency> |
---|
100 | <groupId>flarmradar</groupId> |
---|
101 | <artifactId>ch.netzschmiede.flarmradar.web</artifactId> |
---|
102 | <version>${project.version}</version> |
---|
103 | <type>pom</type> |
---|
104 | </dependency> |
---|
105 | <dependency> |
---|
106 | <groupId>flarmradar</groupId> |
---|
107 | <artifactId>ch.netzschmiede.flarmradar.web.radar</artifactId> |
---|
108 | <version>${project.version}</version> |
---|
109 | <type>war</type> |
---|
110 | </dependency> |
---|
111 | <dependency> |
---|
112 | <groupId>flarmradar</groupId> |
---|
113 | <artifactId>ch.netzschmiede.flarmradar.web.rest</artifactId> |
---|
114 | <version>${project.version}</version> |
---|
115 | <type>war</type> |
---|
116 | </dependency> |
---|
117 | <dependency> |
---|
118 | <groupId>flarmradar</groupId> |
---|
119 | <artifactId>ch.netzschmiede.flarmradar.web.zkee</artifactId> |
---|
120 | <version>${project.version}</version> |
---|
121 | </dependency> |
---|
122 | <dependency> |
---|
123 | <groupId>flarmradar</groupId> |
---|
124 | <artifactId>ch.netzschmiede.flarmradar.srv</artifactId> |
---|
125 | <version>${project.version}</version> |
---|
126 | <type>pom</type> |
---|
127 | </dependency> |
---|
128 | <dependency> |
---|
129 | <groupId>flarmradar</groupId> |
---|
130 | <artifactId>ch.netzschmiede.flarmradar.srv.core</artifactId> |
---|
131 | <version>${project.version}</version> |
---|
132 | <type>ejb</type> |
---|
133 | </dependency> |
---|
134 | <dependency> |
---|
135 | <groupId>flarmradar</groupId> |
---|
136 | <artifactId>ch.netzschmiede.flarmradar.srv.flarmdata</artifactId> |
---|
137 | <version>${project.version}</version> |
---|
138 | <type>ejb</type> |
---|
139 | </dependency> |
---|
140 | <dependency> |
---|
141 | <groupId>flarmradar</groupId> |
---|
142 | <artifactId>ch.netzschmiede.flarmradar.server</artifactId> |
---|
143 | <version>${project.version}</version> |
---|
144 | <type>pom</type> |
---|
145 | </dependency> |
---|
146 | |
---|
147 | <!-- third party libraries --> |
---|
148 | <dependency> |
---|
149 | <groupId>javax</groupId> |
---|
150 | <artifactId>javaee-api</artifactId> |
---|
151 | <version>6.0</version> |
---|
152 | </dependency> |
---|
153 | <dependency> |
---|
154 | <groupId>javax</groupId> |
---|
155 | <artifactId>javaee-web-api</artifactId> |
---|
156 | <version>6.0</version> |
---|
157 | </dependency> |
---|
158 | <dependency> |
---|
159 | <groupId>org.slf4j</groupId> |
---|
160 | <artifactId>slf4j-api</artifactId> |
---|
161 | <version>1.6.6</version> |
---|
162 | </dependency> |
---|
163 | <dependency> |
---|
164 | <groupId>log4j</groupId> |
---|
165 | <artifactId>log4j</artifactId> |
---|
166 | <version>1.2.17</version> |
---|
167 | </dependency> |
---|
168 | <dependency> |
---|
169 | <groupId>org.slf4j</groupId> |
---|
170 | <artifactId>slf4j-simple</artifactId> |
---|
171 | <version>1.6.6</version> |
---|
172 | </dependency> |
---|
173 | <dependency> |
---|
174 | <groupId>org.slf4j</groupId> |
---|
175 | <artifactId>slf4j-log4j12</artifactId> |
---|
176 | <version>1.6.6</version> |
---|
177 | </dependency> |
---|
178 | <dependency> |
---|
179 | <groupId>org.liquibase</groupId> |
---|
180 | <artifactId>liquibase-core</artifactId> |
---|
181 | <version>2.0.3</version> |
---|
182 | </dependency> |
---|
183 | <dependency> |
---|
184 | <groupId>org.jboss.resteasy</groupId> |
---|
185 | <artifactId>resteasy-jaxrs</artifactId> |
---|
186 | <version>2.3.2.Final</version> |
---|
187 | <scope>provided</scope> |
---|
188 | </dependency> |
---|
189 | <dependency> |
---|
190 | <groupId>junit</groupId> |
---|
191 | <artifactId>junit</artifactId> |
---|
192 | <version>4.10</version> |
---|
193 | </dependency> |
---|
194 | <!-- apache commons --> |
---|
195 | <dependency> |
---|
196 | <groupId>commons-io</groupId> |
---|
197 | <artifactId>commons-io</artifactId> |
---|
198 | <version>1.3.1</version> |
---|
199 | </dependency> |
---|
200 | <dependency> |
---|
201 | <groupId>commons-logging</groupId> |
---|
202 | <artifactId>commons-logging</artifactId> |
---|
203 | <version>1.1.1</version> |
---|
204 | </dependency> |
---|
205 | <dependency> |
---|
206 | <groupId>commons-fileupload</groupId> |
---|
207 | <artifactId>commons-fileupload</artifactId> |
---|
208 | <version>1.2.1</version> |
---|
209 | </dependency> |
---|
210 | <dependency> |
---|
211 | <groupId>commons-digester</groupId> |
---|
212 | <artifactId>commons-digester</artifactId> |
---|
213 | <version>2.0</version> |
---|
214 | </dependency> |
---|
215 | <dependency> |
---|
216 | <groupId>commons-collections</groupId> |
---|
217 | <artifactId>commons-collections</artifactId> |
---|
218 | <version>3.2.1</version> |
---|
219 | </dependency> |
---|
220 | <dependency> |
---|
221 | <groupId>commons-codec</groupId> |
---|
222 | <artifactId>commons-codec</artifactId> |
---|
223 | <version>1.4</version> |
---|
224 | </dependency> |
---|
225 | <dependency> |
---|
226 | <groupId>commons-lang</groupId> |
---|
227 | <artifactId>commons-lang</artifactId> |
---|
228 | <version>2.4</version> |
---|
229 | </dependency> |
---|
230 | </dependencies> |
---|
231 | </dependencyManagement> |
---|
232 | |
---|
233 | <!-- inherit these dependencies to all modules --> |
---|
234 | <dependencies> |
---|
235 | <dependency> |
---|
236 | <groupId>junit</groupId> |
---|
237 | <artifactId>junit</artifactId> |
---|
238 | <scope>test</scope> |
---|
239 | </dependency> |
---|
240 | </dependencies> |
---|
241 | |
---|
242 | <build> |
---|
243 | <!-- Define all used plugins & configurations here --> |
---|
244 | <pluginManagement> |
---|
245 | <plugins> |
---|
246 | <plugin> |
---|
247 | <groupId>org.apache.maven.plugins</groupId> |
---|
248 | <artifactId>maven-ejb-plugin</artifactId> |
---|
249 | <version>2.3</version> |
---|
250 | </plugin> |
---|
251 | <plugin> |
---|
252 | <groupId>org.apache.maven.plugins</groupId> |
---|
253 | <artifactId>maven-war-plugin</artifactId> |
---|
254 | <version>2.2</version> |
---|
255 | </plugin> |
---|
256 | <plugin> |
---|
257 | <artifactId>maven-compiler-plugin</artifactId> |
---|
258 | <version>2.4</version> |
---|
259 | </plugin> |
---|
260 | <plugin> |
---|
261 | <groupId>org.apache.maven.plugins</groupId> |
---|
262 | <artifactId>maven-source-plugin</artifactId> |
---|
263 | <version>2.1.2</version> |
---|
264 | </plugin> |
---|
265 | <plugin> |
---|
266 | <groupId>org.apache.maven.plugins</groupId> |
---|
267 | <artifactId>maven-ear-plugin</artifactId> |
---|
268 | <version>2.5</version> |
---|
269 | </plugin> |
---|
270 | <plugin> |
---|
271 | <groupId>org.apache.maven.plugins</groupId> |
---|
272 | <artifactId>maven-release-plugin</artifactId> |
---|
273 | <version>2.2.1</version> |
---|
274 | </plugin> |
---|
275 | <plugin> |
---|
276 | <groupId>org.apache.maven.plugins</groupId> |
---|
277 | <artifactId>maven-javadoc-plugin</artifactId> |
---|
278 | <version>2.8.1</version> |
---|
279 | </plugin> |
---|
280 | <plugin> |
---|
281 | <groupId>org.apache.maven.plugins</groupId> |
---|
282 | <artifactId>maven-resources-plugin</artifactId> |
---|
283 | <version>2.5</version> |
---|
284 | </plugin> |
---|
285 | <plugin> |
---|
286 | <groupId>org.apache.maven.plugins</groupId> |
---|
287 | <artifactId>maven-surefire-plugin</artifactId> |
---|
288 | <version>2.12</version> |
---|
289 | </plugin> |
---|
290 | </plugins> |
---|
291 | </pluginManagement> |
---|
292 | <plugins> |
---|
293 | <plugin> |
---|
294 | <groupId>org.apache.maven.plugins</groupId> |
---|
295 | <artifactId>maven-war-plugin</artifactId> |
---|
296 | <configuration> |
---|
297 | <webXml>src\main\webapp\WEB-INF\web.xml</webXml> |
---|
298 | </configuration> |
---|
299 | </plugin> |
---|
300 | <plugin> |
---|
301 | <artifactId>maven-ejb-plugin</artifactId> |
---|
302 | <configuration> |
---|
303 | <ejbVersion>3.1</ejbVersion> |
---|
304 | </configuration> |
---|
305 | </plugin> |
---|
306 | <plugin> |
---|
307 | <artifactId>maven-compiler-plugin</artifactId> |
---|
308 | <configuration> |
---|
309 | <source>1.6</source> |
---|
310 | <target>1.6</target> |
---|
311 | </configuration> |
---|
312 | </plugin> |
---|
313 | <plugin> |
---|
314 | <groupId>org.apache.maven.plugins</groupId> |
---|
315 | <artifactId>maven-source-plugin</artifactId> |
---|
316 | <executions> |
---|
317 | <execution> |
---|
318 | <id>attach-sources</id> |
---|
319 | <goals> |
---|
320 | <goal>jar</goal> |
---|
321 | </goals> |
---|
322 | </execution> |
---|
323 | </executions> |
---|
324 | </plugin> |
---|
325 | </plugins> |
---|
326 | </build> |
---|
327 | </project> |
---|