1 | <!-- |
---|
2 | This file is part of the FLARM®-Radar Project. |
---|
3 | |
---|
4 | Copyright by the Authors |
---|
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 | Authors: |
---|
21 | 2012-2014 Simon Moser |
---|
22 | 2013-2014 Dominic Spreitz |
---|
23 | 2014-2014 Giorgio Tresoldi |
---|
24 | --> |
---|
25 | <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"> |
---|
26 | <parent> |
---|
27 | <groupId>flarmradar</groupId> |
---|
28 | <artifactId>ch.netzschmiede.flarmradar.all</artifactId> |
---|
29 | <version>1.2.1-SNAPSHOT</version> |
---|
30 | </parent> |
---|
31 | <modelVersion>4.0.0</modelVersion> |
---|
32 | <groupId>flarmradar</groupId> |
---|
33 | <artifactId>ch.netzschmiede.flarmradar.server</artifactId> |
---|
34 | <packaging>ear</packaging> |
---|
35 | <name>ch.netzschmiede.flarmradar.server</name> |
---|
36 | <description>Project Flarm-Radar enterprise application archive</description> |
---|
37 | <url>http://www.flarmradar.ch</url> |
---|
38 | |
---|
39 | <dependencies> |
---|
40 | <dependency> |
---|
41 | <groupId>flarmradar</groupId> |
---|
42 | <artifactId>ch.netzschmiede.flarmradar.web</artifactId> |
---|
43 | <type>pom</type> |
---|
44 | </dependency> |
---|
45 | <dependency> |
---|
46 | <groupId>flarmradar</groupId> |
---|
47 | <artifactId>ch.netzschmiede.flarmradar.lib</artifactId> |
---|
48 | <type>pom</type> |
---|
49 | </dependency> |
---|
50 | <dependency> |
---|
51 | <groupId>flarmradar</groupId> |
---|
52 | <artifactId>ch.netzschmiede.flarmradar.srv</artifactId> |
---|
53 | <type>pom</type> |
---|
54 | </dependency> |
---|
55 | <dependency> |
---|
56 | <groupId>flarmradar</groupId> |
---|
57 | <artifactId>ch.netzschmiede.flarmradar.api</artifactId> |
---|
58 | <type>pom</type> |
---|
59 | </dependency> |
---|
60 | <dependency> |
---|
61 | <groupId>flarmradar</groupId> |
---|
62 | <artifactId>ch.netzschmiede.flarmradar.web.radar</artifactId> |
---|
63 | <type>war</type> |
---|
64 | </dependency> |
---|
65 | <dependency> |
---|
66 | <groupId>flarmradar</groupId> |
---|
67 | <artifactId>ch.netzschmiede.flarmradar.web.rest</artifactId> |
---|
68 | <type>war</type> |
---|
69 | </dependency> |
---|
70 | <dependency> |
---|
71 | <groupId>flarmradar</groupId> |
---|
72 | <artifactId>ch.netzschmiede.flarmradar.srv.core</artifactId> |
---|
73 | <type>ejb</type> |
---|
74 | </dependency> |
---|
75 | </dependencies> |
---|
76 | <build> |
---|
77 | <plugins> |
---|
78 | <plugin> |
---|
79 | <groupId>org.apache.maven.plugins</groupId> |
---|
80 | <artifactId>maven-ear-plugin</artifactId> |
---|
81 | <configuration> |
---|
82 | <displayName /> |
---|
83 | <finalName>flarmradar</finalName> |
---|
84 | <generateApplicationXml>true</generateApplicationXml> |
---|
85 | <defaultLibBundleDir>lib</defaultLibBundleDir> |
---|
86 | <modules> |
---|
87 | <webModule> |
---|
88 | <groupId>flarmradar</groupId> |
---|
89 | <artifactId>ch.netzschmiede.flarmradar.web.radar</artifactId> |
---|
90 | <bundleFileName>radar.war</bundleFileName> |
---|
91 | <contextRoot>/radar</contextRoot> |
---|
92 | </webModule> |
---|
93 | <webModule> |
---|
94 | <groupId>flarmradar</groupId> |
---|
95 | <artifactId>ch.netzschmiede.flarmradar.web.rest</artifactId> |
---|
96 | <bundleFileName>rest.war</bundleFileName> |
---|
97 | <contextRoot>/rest</contextRoot> |
---|
98 | </webModule> |
---|
99 | <ejbModule> |
---|
100 | <groupId>flarmradar</groupId> |
---|
101 | <artifactId>ch.netzschmiede.flarmradar.srv.core</artifactId> |
---|
102 | <bundleFileName>core.jar</bundleFileName> |
---|
103 | </ejbModule> |
---|
104 | </modules> |
---|
105 | <archive> |
---|
106 | <manifest> |
---|
107 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
---|
108 | </manifest> |
---|
109 | </archive> |
---|
110 | </configuration> |
---|
111 | </plugin> |
---|
112 | </plugins> |
---|
113 | </build> |
---|
114 | <version>1.2.1-SNAPSHOT</version> |
---|
115 | </project> |
---|