blob: 17372a4c12e4303dd3baca38fb92333f493df915 [file] [log] [blame]
j180240d089cf22016-09-14 15:00:54 +08001<?xml version="1.0" encoding="UTF-8"?>
2<!-- /* * Copyright (c) 2016, Huawei Technologies Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License");
3 * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0
4 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on
5 an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific
6 language governing permissions and * limitations under the License. */ -->
7
8<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10 <modelVersion>4.0.0</modelVersion>
11 <parent>
12 <groupId>org.openo.gso.gui</groupId>
13 <artifactId>servicegateway</artifactId>
14 <version>1.0.0-SNAPSHOT</version>
15 </parent>
16
17 <artifactId>service</artifactId>
18 <name>service</name>
19 <packaging>war</packaging>
20
21 <dependencies>
22 <dependency>
23 <groupId>org.openo.common-services.common-utilities</groupId>
24 <artifactId>commonlib-cbb</artifactId>
Gary Wu2488d302016-09-15 16:49:21 -070025 <version>1.0.0-SNAPSHOT</version>
j180240d089cf22016-09-14 15:00:54 +080026 </dependency>
27 <!-- roa -->
28 <dependency>
29 <groupId>org.openo.common-services.common-utilities</groupId>
30 <artifactId>commonlib-restclient</artifactId>
Gary Wu2488d302016-09-15 16:49:21 -070031 <version>1.0.0-SNAPSHOT</version>
j180240d089cf22016-09-14 15:00:54 +080032 </dependency>
33 <dependency>
34 <groupId>org.apache.cxf</groupId>
35 <artifactId>cxf-rt-frontend-jaxrs</artifactId>
36 <version>3.1.6</version>
37 </dependency>
38 <dependency>
39 <groupId>commons-httpclient</groupId>
40 <artifactId>commons-httpclient</artifactId>
41 <version>3.1</version>
42 </dependency>
43
44 <dependency>
Gary Wu4fb32ab2016-09-14 16:05:36 -070045 <groupId>org.openo.gso</groupId>
j180240d089cf22016-09-14 15:00:54 +080046 <artifactId>org.openo.gso.commsvc.common</artifactId>
Gary Wu4fb32ab2016-09-14 16:05:36 -070047 <version>1.0.0-SNAPSHOT</version>
j180240d089cf22016-09-14 15:00:54 +080048 </dependency>
49 <dependency>
50 <groupId>org.springframework</groupId>
51 <artifactId>spring-beans</artifactId>
52 <version>3.1.0.RELEASE</version>
53 </dependency>
54 <dependency>
55 <groupId>org.springframework</groupId>
56 <artifactId>spring-context</artifactId>
57 <version>3.1.0.RELEASE</version>
58 </dependency>
59 <dependency>
60 <groupId>org.springframework</groupId>
61 <artifactId>spring-jdbc</artifactId>
62 <version>3.1.0.RELEASE</version>
63 </dependency>
64 <dependency>
65 <groupId>org.springframework</groupId>
66 <artifactId>spring-web</artifactId>
67 <version>3.1.0.RELEASE</version>
68 </dependency>
69 <dependency>
70 <groupId>org.osgi</groupId>
71 <artifactId>org.osgi.core</artifactId>
72 <version>4.1.0</version>
73 </dependency>
74 <dependency>
75 <groupId>org.mybatis</groupId>
76 <artifactId>mybatis</artifactId>
77 <version>3.2.7</version>
78 </dependency>
79 <dependency>
80 <groupId>org.mybatis</groupId>
81 <artifactId>mybatis-spring</artifactId>
82 <version>1.2.0</version>
83 <type>jar</type>
84 <scope>compile</scope>
85 </dependency>
86 <dependency>
87 <groupId>com.mchange</groupId>
88 <artifactId>c3p0</artifactId>
89 <version>0.9.2.1</version>
90 <type>jar</type>
91 <scope>compile</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.codehaus.jackson</groupId>
95 <artifactId>jackson-jaxrs</artifactId>
96 <version>1.9.2</version>
97 </dependency>
98 <dependency>
99 <groupId>javax.servlet</groupId>
100 <artifactId>javax.servlet-api</artifactId>
101 <version>3.1.0</version>
102 </dependency>
103 <dependency>
104 <groupId>com.googlecode.jmockit</groupId>
105 <artifactId>jmockit</artifactId>
106 <version>1.1</version>
107 <scope>test</scope>
108 </dependency>
109 <dependency>
110 <groupId>junit</groupId>
111 <artifactId>junit</artifactId>
112 <version>4.12</version>
113 <scope>test</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.jmockit</groupId>
117 <artifactId>jmockit-coverage</artifactId>
118 <version>1.18</version>
119 <scope>test</scope>
120 </dependency>
121 <dependency>
122 <groupId>com.h2database</groupId>
123 <artifactId>h2</artifactId>
124 <version>1.4.190</version>
125 <scope>test</scope>
126 </dependency>
127 </dependencies>
128
129 <build>
130 <plugins>
131 <plugin>
132 <groupId>org.apache.maven.plugins</groupId>
133 <artifactId>maven-surefire-plugin</artifactId>
134 <configuration>
135 <argLine>-XX:-UseSplitVerifier</argLine>
136 <skipTests>true</skipTests>
137 <testFailureIgnore>true</testFailureIgnore>
138 <excludes>
139 <exclude>${excludesFile}</exclude>
140 </excludes>
141 </configuration>
142 </plugin>
143
144 <plugin>
145 <groupId>org.codehaus.mojo</groupId>
146 <artifactId>cobertura-maven-plugin</artifactId>
147 <version>2.7</version>
148 <configuration>
149 <formats>
150 <format>html</format>
151 <format>xml</format>
152 </formats>
153 <instrumentation>
154 <excludes>
155 <exclude>org/**/*Test.class</exclude>
156 </excludes>
157 </instrumentation>
158 </configuration>
159 </plugin>
160 </plugins>
161 </build>
162</project>