source: core/trunk/pom.xml @ 112

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

#69

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