source: core/trunk/assembly/pom.xml @ 14

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

#7

  • Property svn:mime-type set to text/plain
File size: 1.8 KB
RevLine 
[13]1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2  <parent>
3        <groupId>flarmradar</groupId>
4        <artifactId>ch.netzschmiede.flarmradar.all</artifactId>
5        <version>0.0.1-SNAPSHOT</version>
6  </parent>
7  <modelVersion>4.0.0</modelVersion>
8  <groupId>flarmradar</groupId>
9  <artifactId>ch.netzschmiede.flarmradar</artifactId>
10  <version>0.0.1-SNAPSHOT</version>
11  <packaging>ear</packaging>
12  <name>ch.netzschmiede.flarmradar</name>
13  <description>Project Flarm-Radar enterprise application archive</description>
14  <url>http://www.flarmradar.ch</url>
[14]15 
[13]16  <dependencies>
17        <dependency>
18      <groupId>flarmradar</groupId>
19          <artifactId>ch.netzschmiede.flarmradar.web.login</artifactId>
20          <type>war</type>
21        </dependency>
22        <dependency>
23          <groupId>flarmradar</groupId>
24          <artifactId>ch.netzschmiede.flarmradar.srv.auth</artifactId>
25          <type>ejb</type>
26        </dependency>
27  </dependencies>
28        <build>
29                <plugins>
30                        <plugin>
31                                <groupId>org.apache.maven.plugins</groupId>
32                                <artifactId>maven-ear-plugin</artifactId>
33                                <configuration>
34                                        <displayName />
35                                        <generateApplicationXml>true</generateApplicationXml>
36                                        <modules>
37                                                <webModule>
38                                                        <groupId>flarmradar</groupId>
39                                                        <artifactId>ch.netzschmiede.flarmradar.web.login</artifactId>                                                   
40                                                </webModule>
41                                                <ejbModule>
42                                                        <groupId>flarmradar</groupId>
43                                                        <artifactId>ch.netzschmiede.flarmradar.srv.auth</artifactId>
44                                                </ejbModule>                           
45                                        </modules>
46                                        <archive>
47                                                <manifest>
48                                                        <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
49                                                </manifest>
50                                        </archive>
51                                </configuration>
52                        </plugin>
53                </plugins>
54        </build>
55</project>
Note: See TracBrowser for help on using the repository browser.