fix powermock issue
[msb/apigateway.git] / apiroute / apiroute-service / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE) 
3         Licensed under the Apache License, Version 2.0 (the "License"); you may not 
4         use this file except in compliance with the License. You may obtain a copy 
5         of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required 
6         by applicable law or agreed to in writing, software distributed under the 
7         License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS 
8         OF ANY KIND, either express or implied. See the License for the specific 
9         language governing permissions and limitations under the License. -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12         <parent>
13                 <groupId>org.onap.msb.apigateway.apiroute</groupId>
14                 <artifactId>apiroute-parent</artifactId>
15                 <version>1.4.0-SNAPSHOT</version>
16         </parent>
17         <modelVersion>4.0.0</modelVersion>
18         <groupId>org.onap.msb.apigateway.apiroute</groupId>
19         <artifactId>apiroute-service</artifactId>
20         <name>onap/msb/apigateway/apiroute/apiroute-service</name>
21         <packaging>jar</packaging>
22         <version>1.4.0-SNAPSHOT</version>
23
24
25         <dependencies>
26             <dependency>
27             <groupId>org.javassist</groupId>
28             <artifactId>javassist</artifactId>
29             <version>3.23.1-GA</version>
30         </dependency>
31                 <dependency>
32                         <groupId>io.dropwizard</groupId>
33                         <artifactId>dropwizard-core</artifactId>
34                 </dependency>
35                 <dependency>
36                         <groupId>io.dropwizard</groupId>
37                         <artifactId>dropwizard-assets</artifactId>
38                 </dependency>
39                 <dependency>
40                         <groupId>io.dropwizard</groupId>
41                         <artifactId>dropwizard-client</artifactId>
42                 </dependency>
43                 <!-- add by wangyg:增加redis的java客户端jedis依赖 -->
44                 <dependency>
45                         <groupId>redis.clients</groupId>
46                         <artifactId>jedis</artifactId>
47                 </dependency>
48                 <dependency>
49                         <groupId>org.projectlombok</groupId>
50                         <artifactId>lombok</artifactId>
51                 </dependency>
52
53                 <dependency>
54                         <groupId>junit</groupId>
55                         <artifactId>junit</artifactId>
56                         <scope>test</scope>
57                 </dependency>
58                 <dependency>
59                         <groupId>org.powermock</groupId>
60                         <artifactId>powermock-module-junit4</artifactId>
61                         <scope>test</scope>
62                 </dependency>
63
64                 <dependency>
65                         <groupId>org.powermock</groupId>
66                         <artifactId>powermock-api-mockito</artifactId>
67                         <scope>test</scope>
68                 </dependency>
69                 <dependency>
70                         <groupId>com.orbitz.consul</groupId>
71                         <artifactId>consul-client</artifactId>
72                 </dependency>
73
74                 <dependency>
75                         <groupId>com.fasterxml.jackson.core</groupId>
76                         <artifactId>jackson-databind</artifactId>
77                 </dependency>
78
79                 <dependency>
80                         <groupId>com.fasterxml.jackson.core</groupId>
81                         <artifactId>jackson-core</artifactId>
82                 </dependency>
83
84                 <dependency>
85                         <groupId>com.fasterxml.jackson.core</groupId>
86                         <artifactId>jackson-annotations</artifactId>
87                 </dependency>
88
89                 <dependency>
90                         <groupId>org.apache.httpcomponents</groupId>
91                         <artifactId>httpasyncclient</artifactId>
92                 </dependency>
93
94                 <dependency>
95                         <groupId>org.immutables</groupId>
96                         <artifactId>value</artifactId>
97                         <scope>compile</scope>
98                 </dependency>
99
100                 <dependency>
101                         <groupId>com.fiftyonred</groupId>
102                         <artifactId>mock-jedis</artifactId>
103                 </dependency>
104
105                 <dependency>
106                         <groupId>commons-io</groupId>
107                         <artifactId>commons-io</artifactId>
108                 </dependency>
109
110                 <dependency>
111                         <groupId>org.onap.msb.swagger-sdk</groupId>
112                         <artifactId>swagger-sdk</artifactId>
113                         <version>1.1.0</version>
114                         <exclusions>
115                                 <exclusion>
116                                         <groupId>org.slf4j</groupId>
117                                         <artifactId>slf4j-log4j12</artifactId>
118                                 </exclusion>
119                                 <exclusion>
120                                         <groupId>commons-beanutils</groupId>
121                                         <artifactId>commons-beanutils</artifactId>
122                                 </exclusion>
123                                 <exclusion>
124                                         <groupId>commons-collections</groupId>
125                                         <artifactId>commons-collections</artifactId>
126                                 </exclusion>
127                                 <exclusion>
128                                         <groupId>org.springframework</groupId>
129                                         <artifactId>spring-core</artifactId>
130                                 </exclusion>
131                         </exclusions>
132                 </dependency>
133
134         </dependencies>
135         <build>
136                 <plugins>
137                         <plugin>
138                                 <groupId>org.apache.maven.plugins</groupId>
139                                 <artifactId>maven-jar-plugin</artifactId>
140                                 <version>2.4</version>
141                                 <configuration>
142                                         <archive>
143                                                 <manifest>
144                                                         <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
145                                                 </manifest>
146                                         </archive>
147                                 </configuration>
148                         </plugin>
149                         <plugin>
150                                 <groupId>org.apache.maven.plugins</groupId>
151                                 <artifactId>maven-shade-plugin</artifactId>
152                                 <version>2.3</version>
153                                 <configuration>
154                                         <createDependencyReducedPom>true</createDependencyReducedPom>
155                                         <filters>
156                                                 <filter>
157                                                         <artifact>*:*</artifact>
158                                                         <excludes>
159                                                                 <exclude>META-INF/*.SF</exclude>
160                                                                 <exclude>META-INF/*.DSA</exclude>
161                                                                 <exclude>META-INF/*.RSA</exclude>
162                                                         </excludes>
163                                                 </filter>
164                                         </filters>
165                                 </configuration>
166                                 <executions>
167                                         <execution>
168                                                 <phase>package</phase>
169                                                 <goals>
170                                                         <goal>shade</goal>
171                                                 </goals>
172                                                 <configuration>
173                                                         <transformers>
174                                                                 <transformer
175                                                                         implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
176                                                                 <transformer
177                                                                         implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
178                                                                         <mainClass>org.onap.msb.apiroute.ApiRouteApp</mainClass>
179                                                                 </transformer>
180                                                         </transformers>
181                                                 </configuration>
182                                         </execution>
183                                 </executions>
184                         </plugin>
185                         <plugin>
186                                 <groupId>org.apache.maven.plugins</groupId>
187                                 <artifactId>maven-clean-plugin</artifactId>
188                                 <version>3.0.0</version>
189                                 <executions>
190                                         <execution>
191                                                 <id>clean-generated-files</id>
192                                                 <phase>generate-sources</phase>
193                                                 <goals>
194                                                         <goal>clean</goal>
195                                                 </goals>
196                                                 <configuration>
197                                                         <filesets>
198                                                                 <fileset>
199                                                                         <directory>${project.build.directory}/generated-sources</directory>
200                                                                 </fileset>
201                                                         </filesets>
202                                                 </configuration>
203                                         </execution>
204                                 </executions>
205                         </plugin>
206                 </plugins>
207                 <resources>
208                         <resource>
209                                 <directory>src/main/java</directory>
210                                 <includes>
211                                         <include>**/*.properties</include>
212                                 </includes>
213                         </resource>
214                         <resource>
215                                 <directory>src/main/resources</directory>
216                         </resource>
217                 </resources>
218         </build>
219 </project>