[121] | 1 | <!-- |
---|
| 2 | This file is part of the FLARM®-Radar Project. |
---|
| 3 | |
---|
[297] | 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"> |
---|
[74] | 23 | <modelVersion>4.0.0</modelVersion> |
---|
| 24 | <parent> |
---|
| 25 | <groupId>flarmradar</groupId> |
---|
| 26 | <artifactId>ch.netzschmiede.flarmradar.all</artifactId> |
---|
[411] | 27 | <version>1.3.2-SNAPSHOT</version> |
---|
[361] | 28 | <relativePath>../..</relativePath> |
---|
[74] | 29 | </parent> |
---|
| 30 | <artifactId>ch.netzschmiede.flarmradar.web.zkee</artifactId> |
---|
| 31 | <packaging>jar</packaging> |
---|
| 32 | <name>ch.netzschmiede.flarmradar.zkee</name> |
---|
| 33 | <description>An empty jar that brings in all ZK dependencies from a maven local repo (ZK EE) and the ZK maven repo</description> |
---|
| 34 | |
---|
| 35 | <repositories> |
---|
| 36 | <repository> |
---|
| 37 | <id>local-project-libraries</id> |
---|
| 38 | <name>Local project libraries</name> |
---|
| 39 | <url>file://${basedir}/zkee</url> |
---|
| 40 | <layout>default</layout> |
---|
| 41 | </repository> |
---|
| 42 | <repository> |
---|
| 43 | <id>ZK CE</id> |
---|
| 44 | <name>ZK CE Repository</name> |
---|
[304] | 45 | <url>http://mavensync.zkoss.org/eval</url> |
---|
[74] | 46 | </repository> |
---|
| 47 | </repositories> |
---|
| 48 | |
---|
| 49 | <properties> |
---|
| 50 | <zk.version>6.0.0</zk.version> |
---|
| 51 | </properties> |
---|
| 52 | |
---|
| 53 | <dependencies> |
---|
| 54 | <dependency> |
---|
| 55 | <groupId>org.zkoss.zk</groupId> |
---|
| 56 | <artifactId>zkbind</artifactId> |
---|
| 57 | <version>${zk.version}</version> |
---|
| 58 | </dependency> |
---|
| 59 | <dependency> |
---|
| 60 | <groupId>org.zkoss.zk</groupId> |
---|
| 61 | <artifactId>zk</artifactId> |
---|
| 62 | <version>${zk.version}</version> |
---|
| 63 | </dependency> |
---|
| 64 | <dependency> |
---|
| 65 | <groupId>org.zkoss.zk</groupId> |
---|
| 66 | <artifactId>zhtml</artifactId> |
---|
| 67 | <version>${zk.version}</version> |
---|
| 68 | </dependency> |
---|
| 69 | <dependency> |
---|
| 70 | <groupId>org.zkoss.zk</groupId> |
---|
| 71 | <artifactId>zul</artifactId> |
---|
| 72 | <version>${zk.version}</version> |
---|
| 73 | </dependency> |
---|
| 74 | <dependency> |
---|
| 75 | <groupId>org.zkoss.common</groupId> |
---|
| 76 | <artifactId>zcommon</artifactId> |
---|
| 77 | <version>${zk.version}</version> |
---|
| 78 | </dependency> |
---|
| 79 | <dependency> |
---|
| 80 | <groupId>org.zkoss.common</groupId> |
---|
| 81 | <artifactId>zweb</artifactId> |
---|
| 82 | <version>${zk.version}</version> |
---|
| 83 | </dependency> |
---|
| 84 | |
---|
| 85 | <!-- PE & EE requirements --> |
---|
| 86 | <dependency> |
---|
| 87 | <groupId>org.zkoss.zk</groupId> |
---|
| 88 | <artifactId>zkplus</artifactId> |
---|
| 89 | <version>${zk.version}</version> |
---|
| 90 | </dependency> |
---|
| 91 | <dependency> |
---|
| 92 | <groupId>org.zkoss.zk</groupId> |
---|
| 93 | <artifactId>zkmax</artifactId> |
---|
| 94 | <version>${zk.version}</version> |
---|
| 95 | </dependency> |
---|
| 96 | |
---|
| 97 | <!-- Addons --> |
---|
| 98 | <dependency> |
---|
| 99 | <groupId>org.zkoss.zkforge</groupId> |
---|
| 100 | <artifactId>timelinez</artifactId> |
---|
| 101 | <version>2.3.1_50</version> |
---|
| 102 | </dependency> |
---|
| 103 | <dependency> |
---|
| 104 | <groupId>org.zkoss.zkforge</groupId> |
---|
| 105 | <artifactId>timeplotz</artifactId> |
---|
| 106 | <version>1.1_50</version> |
---|
| 107 | </dependency> |
---|
| 108 | <dependency> |
---|
| 109 | <groupId>org.zkoss.zkforge</groupId> |
---|
| 110 | <artifactId>gmapsz</artifactId> |
---|
| 111 | <version>3.0.0</version> |
---|
| 112 | </dependency> |
---|
| 113 | <dependency> |
---|
| 114 | <groupId>commons-io</groupId> |
---|
| 115 | <artifactId>commons-io</artifactId> |
---|
| 116 | </dependency> |
---|
| 117 | <dependency> |
---|
| 118 | <groupId>commons-logging</groupId> |
---|
| 119 | <artifactId>commons-logging</artifactId> |
---|
| 120 | </dependency> |
---|
| 121 | <dependency> |
---|
| 122 | <groupId>commons-fileupload</groupId> |
---|
| 123 | <artifactId>commons-fileupload</artifactId> |
---|
| 124 | </dependency> |
---|
| 125 | <dependency> |
---|
| 126 | <groupId>commons-digester</groupId> |
---|
| 127 | <artifactId>commons-digester</artifactId> |
---|
| 128 | </dependency> |
---|
| 129 | <dependency> |
---|
| 130 | <groupId>commons-collections</groupId> |
---|
| 131 | <artifactId>commons-collections</artifactId> |
---|
| 132 | </dependency> |
---|
| 133 | <dependency> |
---|
| 134 | <groupId>commons-codec</groupId> |
---|
| 135 | <artifactId>commons-codec</artifactId> |
---|
| 136 | </dependency> |
---|
| 137 | <dependency> |
---|
| 138 | <groupId>commons-lang</groupId> |
---|
| 139 | <artifactId>commons-lang</artifactId> |
---|
| 140 | </dependency> |
---|
| 141 | </dependencies> |
---|
[121] | 142 | </project> |
---|