source: core/trunk/pom.xml @ 65

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

#10

  • Property svn:mime-type set to text/plain
File size: 6.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>
[39]75                                <artifactId>ch.netzschmiede.flarmradar.srv.core</artifactId>
76                                <version>${project.version}</version>
77                                <type>ejb</type>
78                        </dependency>
79                        <dependency>
80                                <groupId>flarmradar</groupId>
[22]81                                <artifactId>ch.netzschmiede.flarmradar.srv.flarmdata</artifactId>
82                                <version>${project.version}</version>
83                                <type>ejb</type>
84                        </dependency>
[14]85
86                        <!-- third party libraries -->
87                        <dependency>
[22]88                                <groupId>javax</groupId>
89                                <artifactId>javaee-api</artifactId>
90                                <version>6.0</version>
91                        </dependency>
92                        <dependency>
93                                <groupId>javax</groupId>
94                                <artifactId>javaee-web-api</artifactId>
95                                <version>6.0</version>
96                        </dependency>
97                        <dependency>
[14]98                                <groupId>org.slf4j</groupId>
99                                <artifactId>slf4j-api</artifactId>
100                                <version>1.6.6</version>
101                        </dependency>
[22]102                        <dependency>
[42]103                                <groupId>log4j</groupId>
104                                <artifactId>log4j</artifactId>
105                                <version>1.2.17</version>
106                        </dependency>
107                        <dependency>
108                                <groupId>org.slf4j</groupId>
109                                <artifactId>slf4j-simple</artifactId>
110                                <version>1.6.6</version>
111                        </dependency>
112                        <dependency>
[62]113                                <groupId>org.slf4j</groupId>
114                                <artifactId>slf4j-log4j12</artifactId>
115                                <version>1.6.6</version>
116                        </dependency>
117                        <dependency>
[37]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>
[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>
[14]138                </dependencies>
139        </dependencyManagement>
[37]140
[24]141        <!-- inherit these dependencies to all modules -->
142        <dependencies>
143                <dependency>
144                        <groupId>junit</groupId>
145                        <artifactId>junit</artifactId>
[37]146                        <scope>test</scope>
[24]147                </dependency>
148        </dependencies>
[14]149
[13]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>
[22]235</project>
Note: See TracBrowser for help on using the repository browser.