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