source: core/trunk/pom.xml @ 313

Last change on this file since 313 was 313, checked in by smoser, 11 years ago

Release 1.2.0

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