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

Last change on this file since 294 was 190, checked in by smoser, 12 years ago

#100

  • Property svn:mime-type set to text/plain
File size: 3.1 KB
Line 
1<!--
2  This file is part of the FLARM®-Radar Project.
3   
4    Copyright 2013 Netzschmiede GmbH (http://www.netzschmiede.ch)
5 
6  Licensed under the Apache License, Version 2.0 (the "License");
7  you may not use this file except in compliance with the License.
8  You may obtain a copy of the License at
9 
10    http://www.apache.org/licenses/LICENSE-2.0
11 
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the License is distributed on an "AS IS" BASIS,
14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  See the License for the specific language governing permissions and
16  limitations under the License.
17 
18    Project Website: www.flarmradar.ch
19    Email: info@flarmradar.ch
20-->
21<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">
22  <parent>
23        <groupId>flarmradar</groupId>
24        <artifactId>ch.netzschmiede.flarmradar.all</artifactId>
25        <version>1.1.1-SNAPSHOT</version>
26  </parent>
27  <modelVersion>4.0.0</modelVersion>
28  <groupId>flarmradar</groupId>
29  <artifactId>ch.netzschmiede.flarmradar</artifactId>
30  <version>1.1.1-SNAPSHOT</version>
31  <packaging>ear</packaging>
32  <name>ch.netzschmiede.flarmradar</name>
33  <description>Project Flarm-Radar enterprise application archive</description>
34  <url>http://www.flarmradar.ch</url>
35 
36  <dependencies>
37        <dependency>
38      <groupId>flarmradar</groupId>
39          <artifactId>ch.netzschmiede.flarmradar.web.radar</artifactId>
40          <type>war</type>
41        </dependency>
42        <dependency>
43      <groupId>flarmradar</groupId>
44          <artifactId>ch.netzschmiede.flarmradar.web.rest</artifactId>
45          <type>war</type>
46        </dependency>
47        <dependency>
48          <groupId>flarmradar</groupId>
49          <artifactId>ch.netzschmiede.flarmradar.srv.core</artifactId>
50          <type>ejb</type>
51        </dependency>
52  </dependencies>
53        <build>
54                <plugins>
55                        <plugin>
56                                <groupId>org.apache.maven.plugins</groupId>
57                                <artifactId>maven-ear-plugin</artifactId>
58                                <configuration>
59                                        <displayName />
60                                        <finalName>flarmradar</finalName>                                       
61                                        <generateApplicationXml>true</generateApplicationXml>
62                                        <defaultLibBundleDir>lib</defaultLibBundleDir>
63                                        <modules>
64                                                <webModule>
65                                                        <groupId>flarmradar</groupId>
66                                                        <artifactId>ch.netzschmiede.flarmradar.web.radar</artifactId>
67                                                        <bundleFileName>radar.war</bundleFileName>
68                                                        <contextRoot>/radar</contextRoot>                                       
69                                                </webModule>
70                                                <webModule>
71                                                        <groupId>flarmradar</groupId>
72                                                        <artifactId>ch.netzschmiede.flarmradar.web.rest</artifactId>
73                                                        <bundleFileName>rest.war</bundleFileName>
74                                                        <contextRoot>/rest</contextRoot>                                               
75                                                </webModule>
76                                                <ejbModule>
77                                                        <groupId>flarmradar</groupId>
78                                                        <artifactId>ch.netzschmiede.flarmradar.srv.core</artifactId>
79                                                        <bundleFileName>core.jar</bundleFileName>
80                                                </ejbModule>                           
81                                        </modules>
82                                        <archive>
83                                                <manifest>
84                                                        <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
85                                                </manifest>
86                                        </archive>
87                                </configuration>
88                        </plugin>
89                </plugins>
90        </build>
91</project>
Note: See TracBrowser for help on using the repository browser.