source: core/trunk/pom.xml @ 37

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

#13

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