source: core/trunk/pom.xml @ 70

Last change on this file since 70 was 66, checked in by dgermann, 13 years ago

#19

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