source: core/trunk/pom.xml @ 274

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

fix liquibase dependency version

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