source: core/trunk/pom.xml @ 13

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

#7

  • Property svn:mime-type set to text/plain
File size: 3.0 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>lib</module>
16                <module>srv</module>
17                <module>web</module>
18        </modules>
19
20        <build>
21                <!-- Define all used plugins & configurations here -->
22                <pluginManagement>
23                        <plugins>
24                                <plugin>
25                                        <groupId>org.apache.maven.plugins</groupId>
26                                        <artifactId>maven-ejb-plugin</artifactId>
27                                        <version>2.3</version>
28                                </plugin>
29                                <plugin>
30                                        <groupId>org.apache.maven.plugins</groupId>
31                                        <artifactId>maven-war-plugin</artifactId>
32                                        <version>2.2</version>
33                                </plugin>
34                                <plugin>
35                                        <artifactId>maven-compiler-plugin</artifactId>
36                                        <version>2.4</version>
37                                </plugin>
38                                <plugin>
39                                        <groupId>org.apache.maven.plugins</groupId>
40                                        <artifactId>maven-source-plugin</artifactId>
41                                        <version>2.1.2</version>
42                                </plugin>
43                                <plugin>
44                                        <groupId>org.apache.maven.plugins</groupId>
45                                        <artifactId>maven-ear-plugin</artifactId>
46                                        <version>2.5</version>
47                                </plugin>
48                                <plugin>
49                                        <groupId>org.apache.maven.plugins</groupId>
50                                        <artifactId>maven-release-plugin</artifactId>
51                                        <version>2.2.1</version>
52                                </plugin>
53                                <plugin>
54                                        <groupId>org.apache.maven.plugins</groupId>
55                                        <artifactId>maven-javadoc-plugin</artifactId>
56                                        <version>2.8.1</version>
57                                </plugin>
58                                <plugin>
59                                        <groupId>org.apache.maven.plugins</groupId>
60                                        <artifactId>maven-resources-plugin</artifactId>
61                                        <version>2.5</version>
62                                </plugin>
63                                <plugin>
64                                        <groupId>org.apache.maven.plugins</groupId>
65                                        <artifactId>maven-surefire-plugin</artifactId>
66                                        <version>2.12</version>
67                                </plugin>
68                        </plugins>
69                </pluginManagement>
70                <plugins>
71                        <plugin>
72                                <groupId>org.apache.maven.plugins</groupId>
73                                <artifactId>maven-war-plugin</artifactId>
74                                <configuration>
75                                        <webXml>src\main\webapp\WEB-INF\web.xml</webXml>
76                                </configuration>
77                        </plugin>
78                        <plugin>
79                                <artifactId>maven-ejb-plugin</artifactId>
80                                <configuration>
81                                        <ejbVersion>3.1</ejbVersion>
82                                </configuration>
83                        </plugin>
84                        <plugin>
85                                <artifactId>maven-compiler-plugin</artifactId>
86                                <configuration>
87                                        <source>1.6</source>
88                                        <target>1.6</target>
89                                </configuration>
90                        </plugin>
91                        <plugin>
92                                <groupId>org.apache.maven.plugins</groupId>
93                                <artifactId>maven-source-plugin</artifactId>
94                                <executions>
95                                        <execution>
96                                                <id>attach-sources</id>
97                                                <goals>
98                                                        <goal>jar</goal>
99                                                </goals>
100                                        </execution>
101                                </executions>
102                        </plugin>
103                </plugins>
104        </build>
105</project>
Note: See TracBrowser for help on using the repository browser.