1 | <!-- |
---|
2 | This file is part of the FLARM®-Radar Project. |
---|
3 | |
---|
4 | Copyright 2013 Netzschmiede GmbH (http://www.netzschmiede.ch) |
---|
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 | --> |
---|
21 | <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"> |
---|
22 | <modelVersion>4.0.0</modelVersion> |
---|
23 | <groupId>flarmradar</groupId> |
---|
24 | <artifactId>ch.netzschmiede.flarmradar.all</artifactId> |
---|
25 | <version>1.1.0</version> |
---|
26 | <packaging>pom</packaging> |
---|
27 | <name>ch.netzschmiede.flarmradar.all</name> |
---|
28 | <description>Aggregator module for Project Flarm-Radar</description> |
---|
29 | <url>http://www.flarmradar.ch</url> |
---|
30 | <scm> |
---|
31 | <connection>scm:svn:https://secure.netzschmiede.ch/svn/flarmradar/core/trunk</connection> |
---|
32 | <developerConnection>scm:svn:https://secure.netzschmiede.ch/svn/flarmradar/core/trunk</developerConnection> |
---|
33 | <url>https://secure.netzschmiede.ch/svn/flarmradar/core/trunk</url> |
---|
34 | </scm> |
---|
35 | |
---|
36 | <!-- when this module is build, then build also the following ones --> |
---|
37 | <modules> |
---|
38 | <module>api</module> |
---|
39 | <module>assembly</module> |
---|
40 | <module>lib</module> |
---|
41 | <module>srv</module> |
---|
42 | <module>web</module> |
---|
43 | </modules> |
---|
44 | |
---|
45 | <repositories> |
---|
46 | <repository> |
---|
47 | <id>ZK CE</id> |
---|
48 | <name>ZK CE Repository</name> |
---|
49 | <url>http://mavensync.zkoss.org/maven2</url> |
---|
50 | </repository> |
---|
51 | </repositories> |
---|
52 | |
---|
53 | <!-- define version numbers for all used libraries (own and 3rdparty) here --> |
---|
54 | <dependencyManagement> |
---|
55 | <dependencies> |
---|
56 | <!-- our own modules --> |
---|
57 | <dependency> |
---|
58 | <groupId>flarmradar</groupId> |
---|
59 | <artifactId>ch.netzschmiede.flarmradar</artifactId> |
---|
60 | <version>${project.version}</version> |
---|
61 | </dependency> |
---|
62 | <dependency> |
---|
63 | <groupId>flarmradar</groupId> |
---|
64 | <artifactId>ch.netzschmiede.flarmradar.api.core</artifactId> |
---|
65 | <version>${project.version}</version> |
---|
66 | </dependency> |
---|
67 | <dependency> |
---|
68 | <groupId>flarmradar</groupId> |
---|
69 | <artifactId>ch.netzschmiede.flarmradar.api.flarmdata</artifactId> |
---|
70 | <version>${project.version}</version> |
---|
71 | </dependency> |
---|
72 | <dependency> |
---|
73 | <groupId>flarmradar</groupId> |
---|
74 | <artifactId>ch.netzschmiede.flarmradar.lib.log</artifactId> |
---|
75 | <version>${project.version}</version> |
---|
76 | </dependency> |
---|
77 | <dependency> |
---|
78 | <groupId>flarmradar</groupId> |
---|
79 | <artifactId>ch.netzschmiede.flarmradar.lib.remote</artifactId> |
---|
80 | <version>${project.version}</version> |
---|
81 | </dependency> |
---|
82 | <dependency> |
---|
83 | <groupId>flarmradar</groupId> |
---|
84 | <artifactId>ch.netzschmiede.flarmradar.lib.upgrade</artifactId> |
---|
85 | <version>${project.version}</version> |
---|
86 | </dependency> |
---|
87 | <dependency> |
---|
88 | <groupId>flarmradar</groupId> |
---|
89 | <artifactId>ch.netzschmiede.flarmradar.web.radar</artifactId> |
---|
90 | <version>${project.version}</version> |
---|
91 | <type>war</type> |
---|
92 | </dependency> |
---|
93 | <dependency> |
---|
94 | <groupId>flarmradar</groupId> |
---|
95 | <artifactId>ch.netzschmiede.flarmradar.web.rest</artifactId> |
---|
96 | <version>${project.version}</version> |
---|
97 | <type>war</type> |
---|
98 | </dependency> |
---|
99 | <dependency> |
---|
100 | <groupId>flarmradar</groupId> |
---|
101 | <artifactId>ch.netzschmiede.flarmradar.web.zkee</artifactId> |
---|
102 | <version>${project.version}</version> |
---|
103 | </dependency> |
---|
104 | <dependency> |
---|
105 | <groupId>flarmradar</groupId> |
---|
106 | <artifactId>ch.netzschmiede.flarmradar.srv.core</artifactId> |
---|
107 | <version>${project.version}</version> |
---|
108 | <type>ejb</type> |
---|
109 | </dependency> |
---|
110 | <dependency> |
---|
111 | <groupId>flarmradar</groupId> |
---|
112 | <artifactId>ch.netzschmiede.flarmradar.srv.flarmdata</artifactId> |
---|
113 | <version>${project.version}</version> |
---|
114 | <type>ejb</type> |
---|
115 | </dependency> |
---|
116 | |
---|
117 | <!-- third party libraries --> |
---|
118 | <dependency> |
---|
119 | <groupId>javax</groupId> |
---|
120 | <artifactId>javaee-api</artifactId> |
---|
121 | <version>6.0</version> |
---|
122 | </dependency> |
---|
123 | <dependency> |
---|
124 | <groupId>javax</groupId> |
---|
125 | <artifactId>javaee-web-api</artifactId> |
---|
126 | <version>6.0</version> |
---|
127 | </dependency> |
---|
128 | <dependency> |
---|
129 | <groupId>org.slf4j</groupId> |
---|
130 | <artifactId>slf4j-api</artifactId> |
---|
131 | <version>1.6.6</version> |
---|
132 | </dependency> |
---|
133 | <dependency> |
---|
134 | <groupId>log4j</groupId> |
---|
135 | <artifactId>log4j</artifactId> |
---|
136 | <version>1.2.17</version> |
---|
137 | </dependency> |
---|
138 | <dependency> |
---|
139 | <groupId>org.slf4j</groupId> |
---|
140 | <artifactId>slf4j-simple</artifactId> |
---|
141 | <version>1.6.6</version> |
---|
142 | </dependency> |
---|
143 | <dependency> |
---|
144 | <groupId>org.slf4j</groupId> |
---|
145 | <artifactId>slf4j-log4j12</artifactId> |
---|
146 | <version>1.6.6</version> |
---|
147 | </dependency> |
---|
148 | <dependency> |
---|
149 | <groupId>org.liquibase</groupId> |
---|
150 | <artifactId>liquibase-core</artifactId> |
---|
151 | <version>2.0.3</version> |
---|
152 | </dependency> |
---|
153 | <dependency> |
---|
154 | <groupId>org.jboss.resteasy</groupId> |
---|
155 | <artifactId>resteasy-jaxrs</artifactId> |
---|
156 | <version>2.3.2.Final</version> |
---|
157 | <scope>provided</scope> |
---|
158 | </dependency> |
---|
159 | <dependency> |
---|
160 | <groupId>junit</groupId> |
---|
161 | <artifactId>junit</artifactId> |
---|
162 | <version>4.10</version> |
---|
163 | </dependency> |
---|
164 | <!-- apache commons --> |
---|
165 | <dependency> |
---|
166 | <groupId>commons-io</groupId> |
---|
167 | <artifactId>commons-io</artifactId> |
---|
168 | <version>1.3.1</version> |
---|
169 | </dependency> |
---|
170 | <dependency> |
---|
171 | <groupId>commons-logging</groupId> |
---|
172 | <artifactId>commons-logging</artifactId> |
---|
173 | <version>1.1.1</version> |
---|
174 | </dependency> |
---|
175 | <dependency> |
---|
176 | <groupId>commons-fileupload</groupId> |
---|
177 | <artifactId>commons-fileupload</artifactId> |
---|
178 | <version>1.2.1</version> |
---|
179 | </dependency> |
---|
180 | <dependency> |
---|
181 | <groupId>commons-digester</groupId> |
---|
182 | <artifactId>commons-digester</artifactId> |
---|
183 | <version>2.0</version> |
---|
184 | </dependency> |
---|
185 | <dependency> |
---|
186 | <groupId>commons-collections</groupId> |
---|
187 | <artifactId>commons-collections</artifactId> |
---|
188 | <version>3.2.1</version> |
---|
189 | </dependency> |
---|
190 | <dependency> |
---|
191 | <groupId>commons-codec</groupId> |
---|
192 | <artifactId>commons-codec</artifactId> |
---|
193 | <version>1.4</version> |
---|
194 | </dependency> |
---|
195 | <dependency> |
---|
196 | <groupId>commons-lang</groupId> |
---|
197 | <artifactId>commons-lang</artifactId> |
---|
198 | <version>2.4</version> |
---|
199 | </dependency> |
---|
200 | </dependencies> |
---|
201 | </dependencyManagement> |
---|
202 | |
---|
203 | <!-- inherit these dependencies to all modules --> |
---|
204 | <dependencies> |
---|
205 | <dependency> |
---|
206 | <groupId>junit</groupId> |
---|
207 | <artifactId>junit</artifactId> |
---|
208 | <scope>test</scope> |
---|
209 | </dependency> |
---|
210 | </dependencies> |
---|
211 | |
---|
212 | <build> |
---|
213 | <!-- Define all used plugins & configurations here --> |
---|
214 | <pluginManagement> |
---|
215 | <plugins> |
---|
216 | <plugin> |
---|
217 | <groupId>org.apache.maven.plugins</groupId> |
---|
218 | <artifactId>maven-ejb-plugin</artifactId> |
---|
219 | <version>2.3</version> |
---|
220 | </plugin> |
---|
221 | <plugin> |
---|
222 | <groupId>org.apache.maven.plugins</groupId> |
---|
223 | <artifactId>maven-war-plugin</artifactId> |
---|
224 | <version>2.2</version> |
---|
225 | </plugin> |
---|
226 | <plugin> |
---|
227 | <artifactId>maven-compiler-plugin</artifactId> |
---|
228 | <version>2.4</version> |
---|
229 | </plugin> |
---|
230 | <plugin> |
---|
231 | <groupId>org.apache.maven.plugins</groupId> |
---|
232 | <artifactId>maven-source-plugin</artifactId> |
---|
233 | <version>2.1.2</version> |
---|
234 | </plugin> |
---|
235 | <plugin> |
---|
236 | <groupId>org.apache.maven.plugins</groupId> |
---|
237 | <artifactId>maven-ear-plugin</artifactId> |
---|
238 | <version>2.5</version> |
---|
239 | </plugin> |
---|
240 | <plugin> |
---|
241 | <groupId>org.apache.maven.plugins</groupId> |
---|
242 | <artifactId>maven-release-plugin</artifactId> |
---|
243 | <version>2.2.1</version> |
---|
244 | </plugin> |
---|
245 | <plugin> |
---|
246 | <groupId>org.apache.maven.plugins</groupId> |
---|
247 | <artifactId>maven-javadoc-plugin</artifactId> |
---|
248 | <version>2.8.1</version> |
---|
249 | </plugin> |
---|
250 | <plugin> |
---|
251 | <groupId>org.apache.maven.plugins</groupId> |
---|
252 | <artifactId>maven-resources-plugin</artifactId> |
---|
253 | <version>2.5</version> |
---|
254 | </plugin> |
---|
255 | <plugin> |
---|
256 | <groupId>org.apache.maven.plugins</groupId> |
---|
257 | <artifactId>maven-surefire-plugin</artifactId> |
---|
258 | <version>2.12</version> |
---|
259 | </plugin> |
---|
260 | </plugins> |
---|
261 | </pluginManagement> |
---|
262 | <plugins> |
---|
263 | <plugin> |
---|
264 | <groupId>org.apache.maven.plugins</groupId> |
---|
265 | <artifactId>maven-war-plugin</artifactId> |
---|
266 | <configuration> |
---|
267 | <webXml>src\main\webapp\WEB-INF\web.xml</webXml> |
---|
268 | </configuration> |
---|
269 | </plugin> |
---|
270 | <plugin> |
---|
271 | <artifactId>maven-ejb-plugin</artifactId> |
---|
272 | <configuration> |
---|
273 | <ejbVersion>3.1</ejbVersion> |
---|
274 | </configuration> |
---|
275 | </plugin> |
---|
276 | <plugin> |
---|
277 | <artifactId>maven-compiler-plugin</artifactId> |
---|
278 | <configuration> |
---|
279 | <source>1.6</source> |
---|
280 | <target>1.6</target> |
---|
281 | </configuration> |
---|
282 | </plugin> |
---|
283 | <plugin> |
---|
284 | <groupId>org.apache.maven.plugins</groupId> |
---|
285 | <artifactId>maven-source-plugin</artifactId> |
---|
286 | <executions> |
---|
287 | <execution> |
---|
288 | <id>attach-sources</id> |
---|
289 | <goals> |
---|
290 | <goal>jar</goal> |
---|
291 | </goals> |
---|
292 | </execution> |
---|
293 | </executions> |
---|
294 | </plugin> |
---|
295 | </plugins> |
---|
296 | </build> |
---|
297 | </project> |
---|