forked from rcernich/console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
133 lines (117 loc) · 4.12 KB
/
pom.xml
File metadata and controls
133 lines (117 loc) · 4.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!-- ~ JBoss, Home of Professional Open Source ~ Copyright 2011 Red Hat Inc.
and/or its affiliates and other contributors ~ as indicated by the @author
tags. All rights reserved. ~ See the copyright.txt in the distribution for
a ~ full listing of individual contributors. ~ ~ This copyrighted material
is made available to anyone wishing to use, ~ modify, copy, or redistribute
it subject to the terms and conditions ~ of the GNU Lesser General Public
License, v. 2.1. ~ This program is distributed in the hope that it will be
useful, but WITHOUT A ~ WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A ~ PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details. ~ You should have received a copy of the GNU Lesser
General Public License, ~ v.2.1 along with this distribution; if not, write
to the Free Software ~ Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, ~ MA 02110-1301, USA. -->
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.switchyard</groupId>
<artifactId>switchyard-parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.switchyard</groupId>
<artifactId>switchyard-console-parent</artifactId>
<version>0.2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>SwitchYard: Console</name>
<description>SwitchYard Management Console</description>
<properties>
<gwt.version>2.2.0</gwt.version>
<gwt.maven>2.2.0</gwt.maven>
<gwt-log.version>3.1.0</gwt-log.version>
<gin.version>1.0_r170</gin.version>
<guice.version>3.0-rc2</guice.version>
<gwtp.version>0.6-2.17</gwtp.version>
<htmlunit.version>2.8</htmlunit.version>
<version.project>${project.version}</version.project>
</properties>
<dependencyManagement>
<dependencies>
<!-- GWT related -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwt.version}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwt.version}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gwt-log</groupId>
<artifactId>gwt-log</artifactId>
<version>${gwt-log.version}</version>
</dependency>
<dependency>
<groupId>com.gwtplatform</groupId>
<artifactId>gwtp-all</artifactId>
<version>${gwtp.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</exclusion>
<exclusion>
<groupId>net.sourceforge.htmlunit</groupId>
<artifactId>crawl_htmlunit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>${guice.version}</version>
</dependency>
<dependency>
<groupId>com.google.gwt.inject</groupId>
<artifactId>gin</artifactId>
<version>${gin.version}</version>
</dependency>
<dependency>
<groupId>com.mycila.com.google.inject.extensions</groupId>
<artifactId>guice-assisted-inject</artifactId>
<version>3.0-20100927</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1-beta-1</version>
</plugin>
</plugins>
</build>
<modules>
<module>gwt</module>
</modules>
</project>