source: core/trunk/pom.xml @ 105

Last change on this file since 105 was 75, checked in by smoser, 13 years ago

#33

  • Property svn:mime-type set to text/plain
File size: 7.6 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3        <modelVersion>4.0.0</modelVersion>
4        <groupId>flarmradar</groupId>
5        <artifactId>ch.netzschmiede.flarmradar.all</artifactId>
6        <version>0.0.1-SNAPSHOT</version>
7        <packaging>pom</packaging>
8        <name>ch.netzschmiede.flarmradar.all</name>
9        <description>Aggregator module for Project Flarm-Radar</description>
10        <url>http://www.flarmradar.ch</url>
11
12        <!-- when this module is build, then build also the following ones -->
13        <modules>
14                <module>api</module>
15                <module>assembly</module>
16                <module>lib</module>
17                <module>srv</module>
18                <module>web</module>
19        </modules>
20
21        <!-- define version numbers for all used libraries (own and 3rdparty) here -->
22        <dependencyManagement>
23                <dependencies>
24                        <!-- our own modules -->
25                        <dependency>
26                                <groupId>flarmradar</groupId>
27                                <artifactId>ch.netzschmiede.flarmradar</artifactId>
28                                <version>${project.version}</version>
29                        </dependency>
30                        <dependency>
31                                <groupId>flarmradar</groupId>
32                                <artifactId>ch.netzschmiede.flarmradar.api.core</artifactId>
33                                <version>${project.version}</version>
34                        </dependency>
35                        <dependency>
36                                <groupId>flarmradar</groupId>
37                                <artifactId>ch.netzschmiede.flarmradar.api.flarmdata</artifactId>
38                                <version>${project.version}</version>
39                        </dependency>
40                        <dependency>
41                                <groupId>flarmradar</groupId>
42                                <artifactId>ch.netzschmiede.flarmradar.lib.log</artifactId>
43                                <version>${project.version}</version>
44                        </dependency>
45                        <dependency>
46                                <groupId>flarmradar</groupId>
47                                <artifactId>ch.netzschmiede.flarmradar.lib.remote</artifactId>
48                                <version>${project.version}</version>
49                        </dependency>
50                        <dependency>
51                                <groupId>flarmradar</groupId>
52                                <artifactId>ch.netzschmiede.flarmradar.lib.upgrade</artifactId>
53                                <version>${project.version}</version>
54                        </dependency>
55                        <dependency>
56                                <groupId>flarmradar</groupId>
57                                <artifactId>ch.netzschmiede.flarmradar.web.radar</artifactId>
58                                <version>${project.version}</version>
59                                <type>war</type>
60                        </dependency>
61                        <dependency>
62                                <groupId>flarmradar</groupId>
63                                <artifactId>ch.netzschmiede.flarmradar.web.rest</artifactId>
64                                <version>${project.version}</version>
65                                <type>war</type>
66                        </dependency>
67                        <dependency>
68                                <groupId>flarmradar</groupId>
69                                <artifactId>ch.netzschmiede.flarmradar.web.zkee</artifactId>
70                                <version>${project.version}</version>
71                        </dependency>
72                        <dependency>
73                                <groupId>flarmradar</groupId>
74                                <artifactId>ch.netzschmiede.flarmradar.srv.core</artifactId>
75                                <version>${project.version}</version>
76                                <type>ejb</type>
77                        </dependency>
78                        <dependency>
79                                <groupId>flarmradar</groupId>
80                                <artifactId>ch.netzschmiede.flarmradar.srv.flarmdata</artifactId>
81                                <version>${project.version}</version>
82                                <type>ejb</type>
83                        </dependency>
84
85                        <!-- third party libraries -->
86                        <dependency>
87                                <groupId>javax</groupId>
88                                <artifactId>javaee-api</artifactId>
89                                <version>6.0</version>
90                        </dependency>
91                        <dependency>
92                                <groupId>javax</groupId>
93                                <artifactId>javaee-web-api</artifactId>
94                                <version>6.0</version>
95                        </dependency>
96                        <dependency>
97                                <groupId>org.slf4j</groupId>
98                                <artifactId>slf4j-api</artifactId>
99                                <version>1.6.6</version>
100                        </dependency>
101                        <dependency>
102                                <groupId>log4j</groupId>
103                                <artifactId>log4j</artifactId>
104                                <version>1.2.17</version>
105                        </dependency>
106                        <dependency>
107                                <groupId>org.slf4j</groupId>
108                                <artifactId>slf4j-simple</artifactId>
109                                <version>1.6.6</version>
110                        </dependency>
111                        <dependency>
112                                <groupId>org.slf4j</groupId>
113                                <artifactId>slf4j-log4j12</artifactId>
114                                <version>1.6.6</version>
115                        </dependency>
116                        <dependency>
117                                <groupId>org.liquibase</groupId>
118                                <artifactId>liquibase-core</artifactId>
119                                <version>2.0.3</version>
120                        </dependency>
121                        <dependency>
122                                <groupId>org.jboss.resteasy</groupId>
123                                <artifactId>resteasy-jaxrs</artifactId>
124                                <version>2.3.2.Final</version>
125                                <scope>provided</scope>
126                        </dependency>
127                        <dependency>
128                                <groupId>junit</groupId>
129                                <artifactId>junit</artifactId>
130                                <version>4.10</version>
131                        </dependency>
132                        <!-- apache commons -->
133                        <dependency>
134                                <groupId>commons-io</groupId>
135                                <artifactId>commons-io</artifactId>
136                                <version>1.3.1</version>
137                        </dependency>
138                        <dependency>
139                                <groupId>commons-logging</groupId>
140                                <artifactId>commons-logging</artifactId>
141                                <version>1.1.1</version>
142                        </dependency>
143                        <dependency>
144                                <groupId>commons-fileupload</groupId>
145                                <artifactId>commons-fileupload</artifactId>
146                                <version>1.2.1</version>
147                        </dependency>
148                        <dependency>
149                                <groupId>commons-digester</groupId>
150                                <artifactId>commons-digester</artifactId>
151                                <version>2.0</version>
152                        </dependency>
153                        <dependency>
154                                <groupId>commons-collections</groupId>
155                                <artifactId>commons-collections</artifactId>
156                                <version>3.2.1</version>
157                        </dependency>
158                        <dependency>
159                                <groupId>commons-codec</groupId>
160                                <artifactId>commons-codec</artifactId>
161                                <version>1.4</version>
162                        </dependency>
163                        <dependency>
164                                <groupId>commons-lang</groupId>
165                                <artifactId>commons-lang</artifactId>
166                                <version>2.4</version>
167                        </dependency>
168                </dependencies>
169        </dependencyManagement>
170
171        <!-- inherit these dependencies to all modules -->
172        <dependencies>
173                <dependency>
174                        <groupId>junit</groupId>
175                        <artifactId>junit</artifactId>
176                        <scope>test</scope>
177                </dependency>
178        </dependencies>
179
180        <build>
181                <!-- Define all used plugins & configurations here -->
182                <pluginManagement>
183                        <plugins>
184                                <plugin>
185                                        <groupId>org.apache.maven.plugins</groupId>
186                                        <artifactId>maven-ejb-plugin</artifactId>
187                                        <version>2.3</version>
188                                </plugin>
189                                <plugin>
190                                        <groupId>org.apache.maven.plugins</groupId>
191                                        <artifactId>maven-war-plugin</artifactId>
192                                        <version>2.2</version>
193                                </plugin>
194                                <plugin>
195                                        <artifactId>maven-compiler-plugin</artifactId>
196                                        <version>2.4</version>
197                                </plugin>
198                                <plugin>
199                                        <groupId>org.apache.maven.plugins</groupId>
200                                        <artifactId>maven-source-plugin</artifactId>
201                                        <version>2.1.2</version>
202                                </plugin>
203                                <plugin>
204                                        <groupId>org.apache.maven.plugins</groupId>
205                                        <artifactId>maven-ear-plugin</artifactId>
206                                        <version>2.5</version>
207                                </plugin>
208                                <plugin>
209                                        <groupId>org.apache.maven.plugins</groupId>
210                                        <artifactId>maven-release-plugin</artifactId>
211                                        <version>2.2.1</version>
212                                </plugin>
213                                <plugin>
214                                        <groupId>org.apache.maven.plugins</groupId>
215                                        <artifactId>maven-javadoc-plugin</artifactId>
216                                        <version>2.8.1</version>
217                                </plugin>
218                                <plugin>
219                                        <groupId>org.apache.maven.plugins</groupId>
220                                        <artifactId>maven-resources-plugin</artifactId>
221                                        <version>2.5</version>
222                                </plugin>
223                                <plugin>
224                                        <groupId>org.apache.maven.plugins</groupId>
225                                        <artifactId>maven-surefire-plugin</artifactId>
226                                        <version>2.12</version>
227                                </plugin>
228                        </plugins>
229                </pluginManagement>
230                <plugins>
231                        <plugin>
232                                <groupId>org.apache.maven.plugins</groupId>
233                                <artifactId>maven-war-plugin</artifactId>
234                                <configuration>
235                                        <webXml>src\main\webapp\WEB-INF\web.xml</webXml>
236                                </configuration>
237                        </plugin>
238                        <plugin>
239                                <artifactId>maven-ejb-plugin</artifactId>
240                                <configuration>
241                                        <ejbVersion>3.1</ejbVersion>
242                                </configuration>
243                        </plugin>
244                        <plugin>
245                                <artifactId>maven-compiler-plugin</artifactId>
246                                <configuration>
247                                        <source>1.6</source>
248                                        <target>1.6</target>
249                                </configuration>
250                        </plugin>
251                        <plugin>
252                                <groupId>org.apache.maven.plugins</groupId>
253                                <artifactId>maven-source-plugin</artifactId>
254                                <executions>
255                                        <execution>
256                                                <id>attach-sources</id>
257                                                <goals>
258                                                        <goal>jar</goal>
259                                                </goals>
260                                        </execution>
261                                </executions>
262                        </plugin>
263                </plugins>
264        </build>
265</project>
Note: See TracBrowser for help on using the repository browser.