source: core/trunk/pom.xml @ 42

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

#10

  • Property svn:mime-type set to text/plain
File size: 6.8 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.auth</artifactId>
33                                <version>${project.version}</version>
34                        </dependency>
35                        <dependency>
36                                <groupId>flarmradar</groupId>
37                                <artifactId>ch.netzschmiede.flarmradar.api.core</artifactId>
38                                <version>${project.version}</version>
39                        </dependency>
40                        <dependency>
41                                <groupId>flarmradar</groupId>
42                                <artifactId>ch.netzschmiede.flarmradar.api.flarmdata</artifactId>
43                                <version>${project.version}</version>
44                        </dependency>
45                        <dependency>
46                                <groupId>flarmradar</groupId>
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>
68                                <artifactId>ch.netzschmiede.flarmradar.web.rest</artifactId>
69                                <version>${project.version}</version>
70                                <type>war</type>
71                        </dependency>
72                        <dependency>
73                                <groupId>flarmradar</groupId>
74                                <artifactId>ch.netzschmiede.flarmradar.srv.auth</artifactId>
75                                <version>${project.version}</version>
76                                <type>ejb</type>
77                        </dependency>
78                        <dependency>
79                                <groupId>flarmradar</groupId>
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>
86                                <artifactId>ch.netzschmiede.flarmradar.srv.flarmdata</artifactId>
87                                <version>${project.version}</version>
88                                <type>ejb</type>
89                        </dependency>
90
91                        <!-- third party libraries -->
92                        <dependency>
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>
103                                <groupId>org.slf4j</groupId>
104                                <artifactId>slf4j-api</artifactId>
105                                <version>1.6.6</version>
106                        </dependency>
107                        <dependency>
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>
118                                <groupId>org.liquibase</groupId>
119                                <artifactId>liquibase-core</artifactId>
120                                <version>2.0.3</version>
121                        </dependency>
122                        <dependency>
123                                <groupId>commons-lang</groupId>
124                                <artifactId>commons-lang</artifactId>
125                                <version>2.6</version>
126                        </dependency>
127                        <dependency>
128                                <groupId>org.jboss.resteasy</groupId>
129                                <artifactId>resteasy-jaxrs</artifactId>
130                                <version>2.3.2.Final</version>
131                                <scope>provided</scope>
132                        </dependency>
133                        <dependency>
134                                <groupId>junit</groupId>
135                                <artifactId>junit</artifactId>
136                                <version>4.10</version>
137                        </dependency>
138                </dependencies>
139        </dependencyManagement>
140
141        <!-- inherit these dependencies to all modules -->
142        <dependencies>
143                <dependency>
144                        <groupId>junit</groupId>
145                        <artifactId>junit</artifactId>
146                        <scope>test</scope>
147                </dependency>
148        </dependencies>
149
150        <build>
151                <!-- Define all used plugins & configurations here -->
152                <pluginManagement>
153                        <plugins>
154                                <plugin>
155                                        <groupId>org.apache.maven.plugins</groupId>
156                                        <artifactId>maven-ejb-plugin</artifactId>
157                                        <version>2.3</version>
158                                </plugin>
159                                <plugin>
160                                        <groupId>org.apache.maven.plugins</groupId>
161                                        <artifactId>maven-war-plugin</artifactId>
162                                        <version>2.2</version>
163                                </plugin>
164                                <plugin>
165                                        <artifactId>maven-compiler-plugin</artifactId>
166                                        <version>2.4</version>
167                                </plugin>
168                                <plugin>
169                                        <groupId>org.apache.maven.plugins</groupId>
170                                        <artifactId>maven-source-plugin</artifactId>
171                                        <version>2.1.2</version>
172                                </plugin>
173                                <plugin>
174                                        <groupId>org.apache.maven.plugins</groupId>
175                                        <artifactId>maven-ear-plugin</artifactId>
176                                        <version>2.5</version>
177                                </plugin>
178                                <plugin>
179                                        <groupId>org.apache.maven.plugins</groupId>
180                                        <artifactId>maven-release-plugin</artifactId>
181                                        <version>2.2.1</version>
182                                </plugin>
183                                <plugin>
184                                        <groupId>org.apache.maven.plugins</groupId>
185                                        <artifactId>maven-javadoc-plugin</artifactId>
186                                        <version>2.8.1</version>
187                                </plugin>
188                                <plugin>
189                                        <groupId>org.apache.maven.plugins</groupId>
190                                        <artifactId>maven-resources-plugin</artifactId>
191                                        <version>2.5</version>
192                                </plugin>
193                                <plugin>
194                                        <groupId>org.apache.maven.plugins</groupId>
195                                        <artifactId>maven-surefire-plugin</artifactId>
196                                        <version>2.12</version>
197                                </plugin>
198                        </plugins>
199                </pluginManagement>
200                <plugins>
201                        <plugin>
202                                <groupId>org.apache.maven.plugins</groupId>
203                                <artifactId>maven-war-plugin</artifactId>
204                                <configuration>
205                                        <webXml>src\main\webapp\WEB-INF\web.xml</webXml>
206                                </configuration>
207                        </plugin>
208                        <plugin>
209                                <artifactId>maven-ejb-plugin</artifactId>
210                                <configuration>
211                                        <ejbVersion>3.1</ejbVersion>
212                                </configuration>
213                        </plugin>
214                        <plugin>
215                                <artifactId>maven-compiler-plugin</artifactId>
216                                <configuration>
217                                        <source>1.6</source>
218                                        <target>1.6</target>
219                                </configuration>
220                        </plugin>
221                        <plugin>
222                                <groupId>org.apache.maven.plugins</groupId>
223                                <artifactId>maven-source-plugin</artifactId>
224                                <executions>
225                                        <execution>
226                                                <id>attach-sources</id>
227                                                <goals>
228                                                        <goal>jar</goal>
229                                                </goals>
230                                        </execution>
231                                </executions>
232                        </plugin>
233                </plugins>
234        </build>
235</project>
Note: See TracBrowser for help on using the repository browser.