blob: 670d4de43babd8fb700fc25b179c23ba410ef5e6 [file] [log] [blame]
j18024043c58b22016-09-20 16:59:10 +08001<!--
2 Copyright 2016 Huawei Technologies Co., Ltd.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
j180240d089cf22016-09-14 15:00:54 +080016<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19 <parent>
20 <groupId>org.openo.gso.gui</groupId>
21 <artifactId>gso-gui</artifactId>
j003022805db45212016-10-13 10:31:59 +080022 <version>1.1.0-SNAPSHOT</version>
j180240d089cf22016-09-14 15:00:54 +080023 </parent>
j003022804aa52a72016-09-26 12:56:23 +080024 <groupId>org.openo.gso.gui</groupId>
25 <artifactId>service-gateway-root</artifactId>
j003022805db45212016-10-13 10:31:59 +080026 <version>1.1.0-SNAPSHOT</version>
j003022804aa52a72016-09-26 12:56:23 +080027 <name>ServiceGatewayRoot</name>
j180240d089cf22016-09-14 15:00:54 +080028 <packaging>pom</packaging>
29
30 <properties>
31 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
j003022804aa52a72016-09-26 12:56:23 +080032 <cxf.version>3.1.6</cxf.version>
j180240d089cf22016-09-14 15:00:54 +080033 </properties>
34 <modules>
35 <module>service</module>
36 <module>deployment</module>
37 </modules>
j003022804aa52a72016-09-26 12:56:23 +080038 <scm>
39 <tag>HEAD</tag>
40 </scm>
41 <dependencies>
42 <dependency>
43 <groupId>org.openo.common-services.common-utilities</groupId>
44 <artifactId>commonlib-cbb</artifactId>
j003022805db45212016-10-13 10:31:59 +080045 <version>1.1.0-SNAPSHOT</version>
j003022804aa52a72016-09-26 12:56:23 +080046 </dependency>
47 <dependency>
48 <groupId>org.openo.common-services.common-utilities</groupId>
49 <artifactId>commonlib-restclient</artifactId>
j003022805db45212016-10-13 10:31:59 +080050 <version>1.1.0-SNAPSHOT</version>
j003022804aa52a72016-09-26 12:56:23 +080051 </dependency>
52 <dependency>
53 <groupId>org.apache.cxf</groupId>
54 <artifactId>cxf-rt-frontend-jaxrs</artifactId>
55 <version>3.1.6</version>
56 </dependency>
57 <dependency>
58 <groupId>commons-httpclient</groupId>
59 <artifactId>commons-httpclient</artifactId>
60 <version>3.1</version>
61 </dependency>
j180240d089cf22016-09-14 15:00:54 +080062
j003022804aa52a72016-09-26 12:56:23 +080063 <dependency>
64 <groupId>org.openo.gso</groupId>
65 <artifactId>org.openo.gso.commsvc.common</artifactId>
j003022805db45212016-10-13 10:31:59 +080066 <version>1.1.0-SNAPSHOT</version>
j003022804aa52a72016-09-26 12:56:23 +080067 </dependency>
68 <dependency>
69 <groupId>org.springframework</groupId>
70 <artifactId>spring-beans</artifactId>
71 <version>3.1.0.RELEASE</version>
72 </dependency>
73 <dependency>
74 <groupId>org.springframework</groupId>
75 <artifactId>spring-context</artifactId>
76 <version>3.1.0.RELEASE</version>
77 </dependency>
78 <dependency>
79 <groupId>org.springframework</groupId>
80 <artifactId>spring-jdbc</artifactId>
81 <version>3.1.0.RELEASE</version>
82 </dependency>
83 <dependency>
84 <groupId>org.springframework</groupId>
85 <artifactId>spring-web</artifactId>
86 <version>3.1.0.RELEASE</version>
87 </dependency>
88 <dependency>
89 <groupId>org.osgi</groupId>
90 <artifactId>org.osgi.core</artifactId>
91 <version>4.1.0</version>
92 </dependency>
93 <dependency>
94 <groupId>org.mybatis</groupId>
95 <artifactId>mybatis</artifactId>
96 <version>3.2.7</version>
97 </dependency>
98 <dependency>
99 <groupId>org.mybatis</groupId>
100 <artifactId>mybatis-spring</artifactId>
101 <version>1.2.0</version>
102 <type>jar</type>
103 <scope>compile</scope>
104 </dependency>
105 <dependency>
106 <groupId>com.mchange</groupId>
107 <artifactId>c3p0</artifactId>
108 <version>0.9.2.1</version>
109 <type>jar</type>
110 <scope>compile</scope>
111 </dependency>
112 <dependency>
113 <groupId>org.codehaus.jackson</groupId>
114 <artifactId>jackson-jaxrs</artifactId>
115 <version>1.9.2</version>
116 </dependency>
j003022809064db22016-10-10 15:10:06 +0800117 <dependency>
j003022804aa52a72016-09-26 12:56:23 +0800118 <groupId>javax.servlet</groupId>
119 <artifactId>javax.servlet-api</artifactId>
120 <version>3.1.0</version>
121 </dependency>
122 <dependency>
j003022809064db22016-10-10 15:10:06 +0800123 <groupId>org.jmockit</groupId>
j003022804aa52a72016-09-26 12:56:23 +0800124 <artifactId>jmockit</artifactId>
j003022809064db22016-10-10 15:10:06 +0800125 <version>1.18</version>
j003022804aa52a72016-09-26 12:56:23 +0800126 <scope>test</scope>
127 </dependency>
128 <dependency>
129 <groupId>junit</groupId>
130 <artifactId>junit</artifactId>
131 <version>4.12</version>
132 <scope>test</scope>
133 </dependency>
134 <dependency>
135 <groupId>org.jmockit</groupId>
136 <artifactId>jmockit-coverage</artifactId>
137 <version>1.18</version>
138 <scope>test</scope>
139 </dependency>
140 <dependency>
141 <groupId>com.h2database</groupId>
142 <artifactId>h2</artifactId>
143 <version>1.4.190</version>
144 <scope>test</scope>
145 </dependency>
146 </dependencies>
j180240d089cf22016-09-14 15:00:54 +0800147
148
j180240d089cf22016-09-14 15:00:54 +0800149</project>