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