source: core/trunk/pom.xml @ 56

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

#17

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