source: core/trunk/pom.xml @ 386

Last change on this file since 386 was 383, checked in by smoser, 10 years ago

fix bulid

  • Property svn:mime-type set to text/plain
File size: 9.9 KB
RevLine 
[121]1<!--
2  This file is part of the FLARM®-Radar Project.
3   
[314]4    Copyright by the Authors
[121]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
[314]20    Authors:
[345]21      2012-2015 Simon Moser
22      2013-2015 Dominic Spreitz
23      2014-2015 Giorgio Tresoldi
[121]24-->
[112]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">
[13]26        <modelVersion>4.0.0</modelVersion>
27        <groupId>flarmradar</groupId>
28        <artifactId>ch.netzschmiede.flarmradar.all</artifactId>
[361]29        <version>1.3.0-SNAPSHOT</version>
[13]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>
[109]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>
[314]39 
40  <properties>
41        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
43  </properties>
[13]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>
[313]51                <module>assembly</module>
[238]52                <module>client</module>
[381]53                <module>server</module>
[13]54        </modules>
[137]55       
56        <repositories>
57        <repository>
58        <id>ZK CE</id>
59        <name>ZK CE Repository</name>
60        <url>http://mavensync.zkoss.org/maven2</url>
61        </repository>
62        </repositories>
[13]63
[14]64        <!-- define version numbers for all used libraries (own and 3rdparty) here -->
65        <dependencyManagement>
66                <dependencies>
67                        <!-- our own modules -->
68                        <dependency>
69                                <groupId>flarmradar</groupId>
[313]70                                <artifactId>ch.netzschmiede.flarmradar.api</artifactId>
[14]71                                <version>${project.version}</version>
[313]72                                <type>pom</type>
[14]73                        </dependency>
74                        <dependency>
75                                <groupId>flarmradar</groupId>
[40]76                                <artifactId>ch.netzschmiede.flarmradar.api.core</artifactId>
77                                <version>${project.version}</version>
78                        </dependency>
79                        <dependency>
80                                <groupId>flarmradar</groupId>
[313]81                                <artifactId>ch.netzschmiede.flarmradar.lib</artifactId>
[22]82                                <version>${project.version}</version>
[313]83                                <type>pom</type>
[22]84                        </dependency>
85                        <dependency>
86                                <groupId>flarmradar</groupId>
[14]87                                <artifactId>ch.netzschmiede.flarmradar.lib.log</artifactId>
88                                <version>${project.version}</version>
89                        </dependency>
90                        <dependency>
91                                <groupId>flarmradar</groupId>
92                                <artifactId>ch.netzschmiede.flarmradar.lib.remote</artifactId>
93                                <version>${project.version}</version>
94                        </dependency>
95                        <dependency>
96                                <groupId>flarmradar</groupId>
97                                <artifactId>ch.netzschmiede.flarmradar.lib.upgrade</artifactId>
98                                <version>${project.version}</version>
99                        </dependency>
100                        <dependency>
101                                <groupId>flarmradar</groupId>
[313]102                                <artifactId>ch.netzschmiede.flarmradar.web</artifactId>
103                                <version>${project.version}</version>
104                                <type>pom</type>
105                        </dependency>
106                        <dependency>
107                                <groupId>flarmradar</groupId>
[51]108                                <artifactId>ch.netzschmiede.flarmradar.web.radar</artifactId>
109                                <version>${project.version}</version>
110                                <type>war</type>
111                        </dependency>
112                        <dependency>
113                                <groupId>flarmradar</groupId>
[24]114                                <artifactId>ch.netzschmiede.flarmradar.web.rest</artifactId>
115                                <version>${project.version}</version>
116                                <type>war</type>
117                        </dependency>
118                        <dependency>
119                                <groupId>flarmradar</groupId>
[74]120                                <artifactId>ch.netzschmiede.flarmradar.web.zkee</artifactId>
121                                <version>${project.version}</version>
122                        </dependency>
123                        <dependency>
124                                <groupId>flarmradar</groupId>
[313]125                                <artifactId>ch.netzschmiede.flarmradar.srv</artifactId>
126                                <version>${project.version}</version>
127                                <type>pom</type>
128                        </dependency>
129                        <dependency>
130                                <groupId>flarmradar</groupId>
[39]131                                <artifactId>ch.netzschmiede.flarmradar.srv.core</artifactId>
132                                <version>${project.version}</version>
133                                <type>ejb</type>
134                        </dependency>
135                        <dependency>
136                                <groupId>flarmradar</groupId>
[22]137                                <artifactId>ch.netzschmiede.flarmradar.srv.flarmdata</artifactId>
138                                <version>${project.version}</version>
139                                <type>ejb</type>
140                        </dependency>
[313]141                        <dependency>
142                                <groupId>flarmradar</groupId>
143                                <artifactId>ch.netzschmiede.flarmradar.server</artifactId>
144                                <version>${project.version}</version>
145                                <type>pom</type>
146                        </dependency>
[383]147                        <dependency>
148                                <groupId>flarmradar</groupId>
149                                <artifactId>ch.netzschmiede.flarmradar.application</artifactId>
150                                <version>${project.version}</version>
151                                <type>ear</type>
152                        </dependency>
[14]153
154                        <!-- third party libraries -->
155                        <dependency>
[22]156                                <groupId>javax</groupId>
157                                <artifactId>javaee-api</artifactId>
158                                <version>6.0</version>
159                        </dependency>
160                        <dependency>
161                                <groupId>javax</groupId>
162                                <artifactId>javaee-web-api</artifactId>
163                                <version>6.0</version>
164                        </dependency>
165                        <dependency>
[14]166                                <groupId>org.slf4j</groupId>
167                                <artifactId>slf4j-api</artifactId>
168                                <version>1.6.6</version>
169                        </dependency>
[22]170                        <dependency>
[42]171                                <groupId>log4j</groupId>
172                                <artifactId>log4j</artifactId>
173                                <version>1.2.17</version>
174                        </dependency>
175                        <dependency>
176                                <groupId>org.slf4j</groupId>
177                                <artifactId>slf4j-simple</artifactId>
178                                <version>1.6.6</version>
179                        </dependency>
180                        <dependency>
[62]181                                <groupId>org.slf4j</groupId>
182                                <artifactId>slf4j-log4j12</artifactId>
183                                <version>1.6.6</version>
184                        </dependency>
185                        <dependency>
[37]186                                <groupId>org.liquibase</groupId>
187                                <artifactId>liquibase-core</artifactId>
188                                <version>2.0.3</version>
189                        </dependency>
190                        <dependency>
[22]191                                <groupId>org.jboss.resteasy</groupId>
192                                <artifactId>resteasy-jaxrs</artifactId>
193                                <version>2.3.2.Final</version>
194                                <scope>provided</scope>
195                        </dependency>
[24]196                        <dependency>
197                                <groupId>junit</groupId>
198                                <artifactId>junit</artifactId>
199                                <version>4.10</version>
200                        </dependency>
[74]201                        <!-- apache commons -->
[66]202                        <dependency>
[74]203                                <groupId>commons-io</groupId>
204                                <artifactId>commons-io</artifactId>
205                                <version>1.3.1</version>
[66]206                        </dependency>
[74]207                        <dependency>
208                                <groupId>commons-logging</groupId>
209                                <artifactId>commons-logging</artifactId>
210                                <version>1.1.1</version>
211                        </dependency>
212                        <dependency>
213                                <groupId>commons-fileupload</groupId>
214                                <artifactId>commons-fileupload</artifactId>
215                                <version>1.2.1</version>
216                        </dependency>
217                        <dependency>
218                                <groupId>commons-digester</groupId>
219                                <artifactId>commons-digester</artifactId>
220                                <version>2.0</version>
221                        </dependency>
222                        <dependency>
223                                <groupId>commons-collections</groupId>
224                                <artifactId>commons-collections</artifactId>
225                                <version>3.2.1</version>
226                        </dependency>
227                        <dependency>
228                                <groupId>commons-codec</groupId>
229                                <artifactId>commons-codec</artifactId>
230                                <version>1.4</version>
231                        </dependency>
232                        <dependency>
233                                <groupId>commons-lang</groupId>
234                                <artifactId>commons-lang</artifactId>
235                                <version>2.4</version>
236                        </dependency>
[14]237                </dependencies>
238        </dependencyManagement>
[37]239
[24]240        <!-- inherit these dependencies to all modules -->
241        <dependencies>
242                <dependency>
243                        <groupId>junit</groupId>
244                        <artifactId>junit</artifactId>
[37]245                        <scope>test</scope>
[24]246                </dependency>
247        </dependencies>
[14]248
[13]249        <build>
250                <!-- Define all used plugins & configurations here -->
251                <pluginManagement>
252                        <plugins>
253                                <plugin>
254                                        <groupId>org.apache.maven.plugins</groupId>
255                                        <artifactId>maven-ejb-plugin</artifactId>
256                                        <version>2.3</version>
257                                </plugin>
258                                <plugin>
259                                        <groupId>org.apache.maven.plugins</groupId>
260                                        <artifactId>maven-war-plugin</artifactId>
261                                        <version>2.2</version>
262                                </plugin>
263                                <plugin>
264                                        <artifactId>maven-compiler-plugin</artifactId>
265                                        <version>2.4</version>
266                                </plugin>
267                                <plugin>
268                                        <groupId>org.apache.maven.plugins</groupId>
269                                        <artifactId>maven-source-plugin</artifactId>
270                                        <version>2.1.2</version>
271                                </plugin>
272                                <plugin>
273                                        <groupId>org.apache.maven.plugins</groupId>
274                                        <artifactId>maven-ear-plugin</artifactId>
275                                        <version>2.5</version>
276                                </plugin>
277                                <plugin>
278                                        <groupId>org.apache.maven.plugins</groupId>
279                                        <artifactId>maven-release-plugin</artifactId>
280                                        <version>2.2.1</version>
281                                </plugin>
282                                <plugin>
283                                        <groupId>org.apache.maven.plugins</groupId>
284                                        <artifactId>maven-javadoc-plugin</artifactId>
285                                        <version>2.8.1</version>
286                                </plugin>
287                                <plugin>
288                                        <groupId>org.apache.maven.plugins</groupId>
289                                        <artifactId>maven-resources-plugin</artifactId>
290                                        <version>2.5</version>
291                                </plugin>
292                                <plugin>
293                                        <groupId>org.apache.maven.plugins</groupId>
294                                        <artifactId>maven-surefire-plugin</artifactId>
295                                        <version>2.12</version>
296                                </plugin>
297                        </plugins>
298                </pluginManagement>
299                <plugins>
300                        <plugin>
301                                <groupId>org.apache.maven.plugins</groupId>
302                                <artifactId>maven-war-plugin</artifactId>
303                                <configuration>
304                                        <webXml>src\main\webapp\WEB-INF\web.xml</webXml>
305                                </configuration>
306                        </plugin>
307                        <plugin>
308                                <artifactId>maven-ejb-plugin</artifactId>
309                                <configuration>
310                                        <ejbVersion>3.1</ejbVersion>
311                                </configuration>
312                        </plugin>
313                        <plugin>
314                                <artifactId>maven-compiler-plugin</artifactId>
315                                <configuration>
316                                        <source>1.6</source>
317                                        <target>1.6</target>
318                                </configuration>
319                        </plugin>
320                        <plugin>
321                                <groupId>org.apache.maven.plugins</groupId>
322                                <artifactId>maven-source-plugin</artifactId>
323                                <executions>
324                                        <execution>
325                                                <id>attach-sources</id>
326                                                <goals>
327                                                        <goal>jar</goal>
328                                                </goals>
329                                        </execution>
330                                </executions>
331                        </plugin>
332                </plugins>
333        </build>
[22]334</project>
Note: See TracBrowser for help on using the repository browser.