[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 | --> |
---|
[112] | 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"> |
---|
[13] | 23 | <modelVersion>4.0.0</modelVersion> |
---|
| 24 | <groupId>flarmradar</groupId> |
---|
| 25 | <artifactId>ch.netzschmiede.flarmradar.all</artifactId> |
---|
[190] | 26 | <version>1.1.1-SNAPSHOT</version> |
---|
[13] | 27 | <packaging>pom</packaging> |
---|
| 28 | <name>ch.netzschmiede.flarmradar.all</name> |
---|
| 29 | <description>Aggregator module for Project Flarm-Radar</description> |
---|
| 30 | <url>http://www.flarmradar.ch</url> |
---|
[109] | 31 | <scm> |
---|
| 32 | <connection>scm:svn:https://secure.netzschmiede.ch/svn/flarmradar/core/trunk</connection> |
---|
| 33 | <developerConnection>scm:svn:https://secure.netzschmiede.ch/svn/flarmradar/core/trunk</developerConnection> |
---|
| 34 | <url>https://secure.netzschmiede.ch/svn/flarmradar/core/trunk</url> |
---|
| 35 | </scm> |
---|
[13] | 36 | |
---|
| 37 | <!-- when this module is build, then build also the following ones --> |
---|
| 38 | <modules> |
---|
| 39 | <module>api</module> |
---|
[14] | 40 | <module>assembly</module> |
---|
[13] | 41 | <module>lib</module> |
---|
| 42 | <module>srv</module> |
---|
| 43 | <module>web</module> |
---|
[238] | 44 | <module>client</module> |
---|
[13] | 45 | </modules> |
---|
[137] | 46 | |
---|
| 47 | <repositories> |
---|
| 48 | <repository> |
---|
| 49 | <id>ZK CE</id> |
---|
| 50 | <name>ZK CE Repository</name> |
---|
| 51 | <url>http://mavensync.zkoss.org/maven2</url> |
---|
| 52 | </repository> |
---|
| 53 | </repositories> |
---|
[13] | 54 | |
---|
[14] | 55 | <!-- define version numbers for all used libraries (own and 3rdparty) here --> |
---|
| 56 | <dependencyManagement> |
---|
| 57 | <dependencies> |
---|
| 58 | <!-- our own modules --> |
---|
| 59 | <dependency> |
---|
| 60 | <groupId>flarmradar</groupId> |
---|
| 61 | <artifactId>ch.netzschmiede.flarmradar</artifactId> |
---|
| 62 | <version>${project.version}</version> |
---|
| 63 | </dependency> |
---|
| 64 | <dependency> |
---|
| 65 | <groupId>flarmradar</groupId> |
---|
[40] | 66 | <artifactId>ch.netzschmiede.flarmradar.api.core</artifactId> |
---|
| 67 | <version>${project.version}</version> |
---|
| 68 | </dependency> |
---|
| 69 | <dependency> |
---|
| 70 | <groupId>flarmradar</groupId> |
---|
[22] | 71 | <artifactId>ch.netzschmiede.flarmradar.api.flarmdata</artifactId> |
---|
| 72 | <version>${project.version}</version> |
---|
| 73 | </dependency> |
---|
| 74 | <dependency> |
---|
| 75 | <groupId>flarmradar</groupId> |
---|
[14] | 76 | <artifactId>ch.netzschmiede.flarmradar.lib.log</artifactId> |
---|
| 77 | <version>${project.version}</version> |
---|
| 78 | </dependency> |
---|
| 79 | <dependency> |
---|
| 80 | <groupId>flarmradar</groupId> |
---|
| 81 | <artifactId>ch.netzschmiede.flarmradar.lib.remote</artifactId> |
---|
| 82 | <version>${project.version}</version> |
---|
| 83 | </dependency> |
---|
| 84 | <dependency> |
---|
| 85 | <groupId>flarmradar</groupId> |
---|
| 86 | <artifactId>ch.netzschmiede.flarmradar.lib.upgrade</artifactId> |
---|
| 87 | <version>${project.version}</version> |
---|
| 88 | </dependency> |
---|
| 89 | <dependency> |
---|
| 90 | <groupId>flarmradar</groupId> |
---|
[51] | 91 | <artifactId>ch.netzschmiede.flarmradar.web.radar</artifactId> |
---|
| 92 | <version>${project.version}</version> |
---|
| 93 | <type>war</type> |
---|
| 94 | </dependency> |
---|
| 95 | <dependency> |
---|
| 96 | <groupId>flarmradar</groupId> |
---|
[24] | 97 | <artifactId>ch.netzschmiede.flarmradar.web.rest</artifactId> |
---|
| 98 | <version>${project.version}</version> |
---|
| 99 | <type>war</type> |
---|
| 100 | </dependency> |
---|
| 101 | <dependency> |
---|
| 102 | <groupId>flarmradar</groupId> |
---|
[74] | 103 | <artifactId>ch.netzschmiede.flarmradar.web.zkee</artifactId> |
---|
| 104 | <version>${project.version}</version> |
---|
| 105 | </dependency> |
---|
| 106 | <dependency> |
---|
| 107 | <groupId>flarmradar</groupId> |
---|
[39] | 108 | <artifactId>ch.netzschmiede.flarmradar.srv.core</artifactId> |
---|
| 109 | <version>${project.version}</version> |
---|
| 110 | <type>ejb</type> |
---|
| 111 | </dependency> |
---|
| 112 | <dependency> |
---|
| 113 | <groupId>flarmradar</groupId> |
---|
[22] | 114 | <artifactId>ch.netzschmiede.flarmradar.srv.flarmdata</artifactId> |
---|
| 115 | <version>${project.version}</version> |
---|
| 116 | <type>ejb</type> |
---|
| 117 | </dependency> |
---|
[14] | 118 | |
---|
| 119 | <!-- third party libraries --> |
---|
| 120 | <dependency> |
---|
[22] | 121 | <groupId>javax</groupId> |
---|
| 122 | <artifactId>javaee-api</artifactId> |
---|
| 123 | <version>6.0</version> |
---|
| 124 | </dependency> |
---|
| 125 | <dependency> |
---|
| 126 | <groupId>javax</groupId> |
---|
| 127 | <artifactId>javaee-web-api</artifactId> |
---|
| 128 | <version>6.0</version> |
---|
| 129 | </dependency> |
---|
| 130 | <dependency> |
---|
[14] | 131 | <groupId>org.slf4j</groupId> |
---|
| 132 | <artifactId>slf4j-api</artifactId> |
---|
| 133 | <version>1.6.6</version> |
---|
| 134 | </dependency> |
---|
[22] | 135 | <dependency> |
---|
[42] | 136 | <groupId>log4j</groupId> |
---|
| 137 | <artifactId>log4j</artifactId> |
---|
| 138 | <version>1.2.17</version> |
---|
| 139 | </dependency> |
---|
| 140 | <dependency> |
---|
| 141 | <groupId>org.slf4j</groupId> |
---|
| 142 | <artifactId>slf4j-simple</artifactId> |
---|
| 143 | <version>1.6.6</version> |
---|
| 144 | </dependency> |
---|
| 145 | <dependency> |
---|
[62] | 146 | <groupId>org.slf4j</groupId> |
---|
| 147 | <artifactId>slf4j-log4j12</artifactId> |
---|
| 148 | <version>1.6.6</version> |
---|
| 149 | </dependency> |
---|
| 150 | <dependency> |
---|
[37] | 151 | <groupId>org.liquibase</groupId> |
---|
| 152 | <artifactId>liquibase-core</artifactId> |
---|
| 153 | <version>2.0.3</version> |
---|
| 154 | </dependency> |
---|
| 155 | <dependency> |
---|
[22] | 156 | <groupId>org.jboss.resteasy</groupId> |
---|
| 157 | <artifactId>resteasy-jaxrs</artifactId> |
---|
| 158 | <version>2.3.2.Final</version> |
---|
| 159 | <scope>provided</scope> |
---|
| 160 | </dependency> |
---|
[24] | 161 | <dependency> |
---|
| 162 | <groupId>junit</groupId> |
---|
| 163 | <artifactId>junit</artifactId> |
---|
| 164 | <version>4.10</version> |
---|
| 165 | </dependency> |
---|
[74] | 166 | <!-- apache commons --> |
---|
[66] | 167 | <dependency> |
---|
[74] | 168 | <groupId>commons-io</groupId> |
---|
| 169 | <artifactId>commons-io</artifactId> |
---|
| 170 | <version>1.3.1</version> |
---|
[66] | 171 | </dependency> |
---|
[74] | 172 | <dependency> |
---|
| 173 | <groupId>commons-logging</groupId> |
---|
| 174 | <artifactId>commons-logging</artifactId> |
---|
| 175 | <version>1.1.1</version> |
---|
| 176 | </dependency> |
---|
| 177 | <dependency> |
---|
| 178 | <groupId>commons-fileupload</groupId> |
---|
| 179 | <artifactId>commons-fileupload</artifactId> |
---|
| 180 | <version>1.2.1</version> |
---|
| 181 | </dependency> |
---|
| 182 | <dependency> |
---|
| 183 | <groupId>commons-digester</groupId> |
---|
| 184 | <artifactId>commons-digester</artifactId> |
---|
| 185 | <version>2.0</version> |
---|
| 186 | </dependency> |
---|
| 187 | <dependency> |
---|
| 188 | <groupId>commons-collections</groupId> |
---|
| 189 | <artifactId>commons-collections</artifactId> |
---|
| 190 | <version>3.2.1</version> |
---|
| 191 | </dependency> |
---|
| 192 | <dependency> |
---|
| 193 | <groupId>commons-codec</groupId> |
---|
| 194 | <artifactId>commons-codec</artifactId> |
---|
| 195 | <version>1.4</version> |
---|
| 196 | </dependency> |
---|
| 197 | <dependency> |
---|
| 198 | <groupId>commons-lang</groupId> |
---|
| 199 | <artifactId>commons-lang</artifactId> |
---|
| 200 | <version>2.4</version> |
---|
| 201 | </dependency> |
---|
[14] | 202 | </dependencies> |
---|
| 203 | </dependencyManagement> |
---|
[37] | 204 | |
---|
[24] | 205 | <!-- inherit these dependencies to all modules --> |
---|
| 206 | <dependencies> |
---|
| 207 | <dependency> |
---|
| 208 | <groupId>junit</groupId> |
---|
| 209 | <artifactId>junit</artifactId> |
---|
[37] | 210 | <scope>test</scope> |
---|
[24] | 211 | </dependency> |
---|
| 212 | </dependencies> |
---|
[14] | 213 | |
---|
[13] | 214 | <build> |
---|
| 215 | <!-- Define all used plugins & configurations here --> |
---|
| 216 | <pluginManagement> |
---|
| 217 | <plugins> |
---|
| 218 | <plugin> |
---|
| 219 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 220 | <artifactId>maven-ejb-plugin</artifactId> |
---|
| 221 | <version>2.3</version> |
---|
| 222 | </plugin> |
---|
| 223 | <plugin> |
---|
| 224 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 225 | <artifactId>maven-war-plugin</artifactId> |
---|
| 226 | <version>2.2</version> |
---|
| 227 | </plugin> |
---|
| 228 | <plugin> |
---|
| 229 | <artifactId>maven-compiler-plugin</artifactId> |
---|
| 230 | <version>2.4</version> |
---|
| 231 | </plugin> |
---|
| 232 | <plugin> |
---|
| 233 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 234 | <artifactId>maven-source-plugin</artifactId> |
---|
| 235 | <version>2.1.2</version> |
---|
| 236 | </plugin> |
---|
| 237 | <plugin> |
---|
| 238 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 239 | <artifactId>maven-ear-plugin</artifactId> |
---|
| 240 | <version>2.5</version> |
---|
| 241 | </plugin> |
---|
| 242 | <plugin> |
---|
| 243 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 244 | <artifactId>maven-release-plugin</artifactId> |
---|
| 245 | <version>2.2.1</version> |
---|
| 246 | </plugin> |
---|
| 247 | <plugin> |
---|
| 248 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 249 | <artifactId>maven-javadoc-plugin</artifactId> |
---|
| 250 | <version>2.8.1</version> |
---|
| 251 | </plugin> |
---|
| 252 | <plugin> |
---|
| 253 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 254 | <artifactId>maven-resources-plugin</artifactId> |
---|
| 255 | <version>2.5</version> |
---|
| 256 | </plugin> |
---|
| 257 | <plugin> |
---|
| 258 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 259 | <artifactId>maven-surefire-plugin</artifactId> |
---|
| 260 | <version>2.12</version> |
---|
| 261 | </plugin> |
---|
| 262 | </plugins> |
---|
| 263 | </pluginManagement> |
---|
| 264 | <plugins> |
---|
| 265 | <plugin> |
---|
| 266 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 267 | <artifactId>maven-war-plugin</artifactId> |
---|
| 268 | <configuration> |
---|
| 269 | <webXml>src\main\webapp\WEB-INF\web.xml</webXml> |
---|
| 270 | </configuration> |
---|
| 271 | </plugin> |
---|
| 272 | <plugin> |
---|
| 273 | <artifactId>maven-ejb-plugin</artifactId> |
---|
| 274 | <configuration> |
---|
| 275 | <ejbVersion>3.1</ejbVersion> |
---|
| 276 | </configuration> |
---|
| 277 | </plugin> |
---|
| 278 | <plugin> |
---|
| 279 | <artifactId>maven-compiler-plugin</artifactId> |
---|
| 280 | <configuration> |
---|
| 281 | <source>1.6</source> |
---|
| 282 | <target>1.6</target> |
---|
| 283 | </configuration> |
---|
| 284 | </plugin> |
---|
| 285 | <plugin> |
---|
| 286 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 287 | <artifactId>maven-source-plugin</artifactId> |
---|
| 288 | <executions> |
---|
| 289 | <execution> |
---|
| 290 | <id>attach-sources</id> |
---|
| 291 | <goals> |
---|
| 292 | <goal>jar</goal> |
---|
| 293 | </goals> |
---|
| 294 | </execution> |
---|
| 295 | </executions> |
---|
| 296 | </plugin> |
---|
| 297 | </plugins> |
---|
| 298 | </build> |
---|
[22] | 299 | </project> |
---|