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