source: core/trunk/pom.xml @ 121

Last change on this file since 121 was 121, checked in by smoser, 12 years ago

#71

  • Property svn:mime-type set to text/plain
File size: 8.6 KB
Line 
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.0.0-SNAPSHOT</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        <!-- define version numbers for all used libraries (own and 3rdparty) here -->
46        <dependencyManagement>
47                <dependencies>
48                        <!-- our own modules -->
49                        <dependency>
50                                <groupId>flarmradar</groupId>
51                                <artifactId>ch.netzschmiede.flarmradar</artifactId>
52                                <version>${project.version}</version>
53                        </dependency>
54                        <dependency>
55                                <groupId>flarmradar</groupId>
56                                <artifactId>ch.netzschmiede.flarmradar.api.core</artifactId>
57                                <version>${project.version}</version>
58                        </dependency>
59                        <dependency>
60                                <groupId>flarmradar</groupId>
61                                <artifactId>ch.netzschmiede.flarmradar.api.flarmdata</artifactId>
62                                <version>${project.version}</version>
63                        </dependency>
64                        <dependency>
65                                <groupId>flarmradar</groupId>
66                                <artifactId>ch.netzschmiede.flarmradar.lib.log</artifactId>
67                                <version>${project.version}</version>
68                        </dependency>
69                        <dependency>
70                                <groupId>flarmradar</groupId>
71                                <artifactId>ch.netzschmiede.flarmradar.lib.remote</artifactId>
72                                <version>${project.version}</version>
73                        </dependency>
74                        <dependency>
75                                <groupId>flarmradar</groupId>
76                                <artifactId>ch.netzschmiede.flarmradar.lib.upgrade</artifactId>
77                                <version>${project.version}</version>
78                        </dependency>
79                        <dependency>
80                                <groupId>flarmradar</groupId>
81                                <artifactId>ch.netzschmiede.flarmradar.web.radar</artifactId>
82                                <version>${project.version}</version>
83                                <type>war</type>
84                        </dependency>
85                        <dependency>
86                                <groupId>flarmradar</groupId>
87                                <artifactId>ch.netzschmiede.flarmradar.web.rest</artifactId>
88                                <version>${project.version}</version>
89                                <type>war</type>
90                        </dependency>
91                        <dependency>
92                                <groupId>flarmradar</groupId>
93                                <artifactId>ch.netzschmiede.flarmradar.web.zkee</artifactId>
94                                <version>${project.version}</version>
95                        </dependency>
96                        <dependency>
97                                <groupId>flarmradar</groupId>
98                                <artifactId>ch.netzschmiede.flarmradar.srv.core</artifactId>
99                                <version>${project.version}</version>
100                                <type>ejb</type>
101                        </dependency>
102                        <dependency>
103                                <groupId>flarmradar</groupId>
104                                <artifactId>ch.netzschmiede.flarmradar.srv.flarmdata</artifactId>
105                                <version>${project.version}</version>
106                                <type>ejb</type>
107                        </dependency>
108
109                        <!-- third party libraries -->
110                        <dependency>
111                                <groupId>javax</groupId>
112                                <artifactId>javaee-api</artifactId>
113                                <version>6.0</version>
114                        </dependency>
115                        <dependency>
116                                <groupId>javax</groupId>
117                                <artifactId>javaee-web-api</artifactId>
118                                <version>6.0</version>
119                        </dependency>
120                        <dependency>
121                                <groupId>org.slf4j</groupId>
122                                <artifactId>slf4j-api</artifactId>
123                                <version>1.6.6</version>
124                        </dependency>
125                        <dependency>
126                                <groupId>log4j</groupId>
127                                <artifactId>log4j</artifactId>
128                                <version>1.2.17</version>
129                        </dependency>
130                        <dependency>
131                                <groupId>org.slf4j</groupId>
132                                <artifactId>slf4j-simple</artifactId>
133                                <version>1.6.6</version>
134                        </dependency>
135                        <dependency>
136                                <groupId>org.slf4j</groupId>
137                                <artifactId>slf4j-log4j12</artifactId>
138                                <version>1.6.6</version>
139                        </dependency>
140                        <dependency>
141                                <groupId>org.liquibase</groupId>
142                                <artifactId>liquibase-core</artifactId>
143                                <version>2.0.3</version>
144                        </dependency>
145                        <dependency>
146                                <groupId>org.jboss.resteasy</groupId>
147                                <artifactId>resteasy-jaxrs</artifactId>
148                                <version>2.3.2.Final</version>
149                                <scope>provided</scope>
150                        </dependency>
151                        <dependency>
152                                <groupId>junit</groupId>
153                                <artifactId>junit</artifactId>
154                                <version>4.10</version>
155                        </dependency>
156                        <!-- apache commons -->
157                        <dependency>
158                                <groupId>commons-io</groupId>
159                                <artifactId>commons-io</artifactId>
160                                <version>1.3.1</version>
161                        </dependency>
162                        <dependency>
163                                <groupId>commons-logging</groupId>
164                                <artifactId>commons-logging</artifactId>
165                                <version>1.1.1</version>
166                        </dependency>
167                        <dependency>
168                                <groupId>commons-fileupload</groupId>
169                                <artifactId>commons-fileupload</artifactId>
170                                <version>1.2.1</version>
171                        </dependency>
172                        <dependency>
173                                <groupId>commons-digester</groupId>
174                                <artifactId>commons-digester</artifactId>
175                                <version>2.0</version>
176                        </dependency>
177                        <dependency>
178                                <groupId>commons-collections</groupId>
179                                <artifactId>commons-collections</artifactId>
180                                <version>3.2.1</version>
181                        </dependency>
182                        <dependency>
183                                <groupId>commons-codec</groupId>
184                                <artifactId>commons-codec</artifactId>
185                                <version>1.4</version>
186                        </dependency>
187                        <dependency>
188                                <groupId>commons-lang</groupId>
189                                <artifactId>commons-lang</artifactId>
190                                <version>2.4</version>
191                        </dependency>
192                </dependencies>
193        </dependencyManagement>
194
195        <!-- inherit these dependencies to all modules -->
196        <dependencies>
197                <dependency>
198                        <groupId>junit</groupId>
199                        <artifactId>junit</artifactId>
200                        <scope>test</scope>
201                </dependency>
202        </dependencies>
203
204        <build>
205                <!-- Define all used plugins & configurations here -->
206                <pluginManagement>
207                        <plugins>
208                                <plugin>
209                                        <groupId>org.apache.maven.plugins</groupId>
210                                        <artifactId>maven-ejb-plugin</artifactId>
211                                        <version>2.3</version>
212                                </plugin>
213                                <plugin>
214                                        <groupId>org.apache.maven.plugins</groupId>
215                                        <artifactId>maven-war-plugin</artifactId>
216                                        <version>2.2</version>
217                                </plugin>
218                                <plugin>
219                                        <artifactId>maven-compiler-plugin</artifactId>
220                                        <version>2.4</version>
221                                </plugin>
222                                <plugin>
223                                        <groupId>org.apache.maven.plugins</groupId>
224                                        <artifactId>maven-source-plugin</artifactId>
225                                        <version>2.1.2</version>
226                                </plugin>
227                                <plugin>
228                                        <groupId>org.apache.maven.plugins</groupId>
229                                        <artifactId>maven-ear-plugin</artifactId>
230                                        <version>2.5</version>
231                                </plugin>
232                                <plugin>
233                                        <groupId>org.apache.maven.plugins</groupId>
234                                        <artifactId>maven-release-plugin</artifactId>
235                                        <version>2.2.1</version>
236                                </plugin>
237                                <plugin>
238                                        <groupId>org.apache.maven.plugins</groupId>
239                                        <artifactId>maven-javadoc-plugin</artifactId>
240                                        <version>2.8.1</version>
241                                </plugin>
242                                <plugin>
243                                        <groupId>org.apache.maven.plugins</groupId>
244                                        <artifactId>maven-resources-plugin</artifactId>
245                                        <version>2.5</version>
246                                </plugin>
247                                <plugin>
248                                        <groupId>org.apache.maven.plugins</groupId>
249                                        <artifactId>maven-surefire-plugin</artifactId>
250                                        <version>2.12</version>
251                                </plugin>
252                        </plugins>
253                </pluginManagement>
254                <plugins>
255                        <plugin>
256                                <groupId>org.apache.maven.plugins</groupId>
257                                <artifactId>maven-war-plugin</artifactId>
258                                <configuration>
259                                        <webXml>src\main\webapp\WEB-INF\web.xml</webXml>
260                                </configuration>
261                        </plugin>
262                        <plugin>
263                                <artifactId>maven-ejb-plugin</artifactId>
264                                <configuration>
265                                        <ejbVersion>3.1</ejbVersion>
266                                </configuration>
267                        </plugin>
268                        <plugin>
269                                <artifactId>maven-compiler-plugin</artifactId>
270                                <configuration>
271                                        <source>1.6</source>
272                                        <target>1.6</target>
273                                </configuration>
274                        </plugin>
275                        <plugin>
276                                <groupId>org.apache.maven.plugins</groupId>
277                                <artifactId>maven-source-plugin</artifactId>
278                                <executions>
279                                        <execution>
280                                                <id>attach-sources</id>
281                                                <goals>
282                                                        <goal>jar</goal>
283                                                </goals>
284                                        </execution>
285                                </executions>
286                        </plugin>
287                </plugins>
288        </build>
289</project>
Note: See TracBrowser for help on using the repository browser.