source: core/trunk/pom.xml @ 74

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

#35

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