ff437b665c347bff3faba078126d86c25d1c7ff2
[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.2.5</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.2.5</version>
23
24
25         <dependencies>
26                 <dependency>
27                         <groupId>io.dropwizard</groupId>
28                         <artifactId>dropwizard-core</artifactId>
29                 </dependency>
30                 <dependency>
31                         <groupId>io.dropwizard</groupId>
32                         <artifactId>dropwizard-assets</artifactId>
33                 </dependency>
34                 <dependency>
35                         <groupId>io.dropwizard</groupId>
36                         <artifactId>dropwizard-client</artifactId>
37                 </dependency>
38                 <!-- add by wangyg:增加redis的java客户端jedis依赖 -->
39                 <dependency>
40                         <groupId>redis.clients</groupId>
41                         <artifactId>jedis</artifactId>
42                 </dependency>
43                 <dependency>
44                         <groupId>org.projectlombok</groupId>
45                         <artifactId>lombok</artifactId>
46                 </dependency>
47
48                 <dependency>
49                         <groupId>junit</groupId>
50                         <artifactId>junit</artifactId>
51                         <scope>test</scope>
52                 </dependency>
53                 <dependency>
54                         <groupId>org.powermock</groupId>
55                         <artifactId>powermock-module-junit4</artifactId>
56                         <scope>test</scope>
57                 </dependency>
58
59                 <dependency>
60                         <groupId>org.powermock</groupId>
61                         <artifactId>powermock-api-mockito</artifactId>
62                         <scope>test</scope>
63                 </dependency>
64                 <dependency>
65                         <groupId>com.orbitz.consul</groupId>
66                         <artifactId>consul-client</artifactId>
67                 </dependency>
68
69                 <dependency>
70                         <groupId>com.fasterxml.jackson.core</groupId>
71                         <artifactId>jackson-databind</artifactId>
72                 </dependency>
73
74                 <dependency>
75                         <groupId>com.fasterxml.jackson.core</groupId>
76                         <artifactId>jackson-core</artifactId>
77                 </dependency>
78
79                 <dependency>
80                         <groupId>com.fasterxml.jackson.core</groupId>
81                         <artifactId>jackson-annotations</artifactId>
82                 </dependency>
83
84                 <dependency>
85                         <groupId>org.apache.httpcomponents</groupId>
86                         <artifactId>httpasyncclient</artifactId>
87                 </dependency>
88
89                 <dependency>
90                         <groupId>org.immutables</groupId>
91                         <artifactId>value</artifactId>
92                         <scope>compile</scope>
93                 </dependency>
94
95                 <dependency>
96                         <groupId>com.fiftyonred</groupId>
97                         <artifactId>mock-jedis</artifactId>
98                 </dependency>
99
100                 <dependency>
101                         <groupId>commons-io</groupId>
102                         <artifactId>commons-io</artifactId>
103                 </dependency>
104
105                 <dependency>
106                         <groupId>org.onap.msb.swagger-sdk</groupId>
107                         <artifactId>swagger-sdk</artifactId>
108                         <version>1.1.0</version>
109                         <exclusions>
110                                 <exclusion>
111                                         <groupId>org.slf4j</groupId>
112                                         <artifactId>slf4j-log4j12</artifactId>
113                                 </exclusion>
114                                 <exclusion>
115                                         <groupId>commons-beanutils</groupId>
116                                         <artifactId>commons-beanutils</artifactId>
117                                 </exclusion>
118                                 <exclusion>
119                                         <groupId>commons-collections</groupId>
120                                         <artifactId>commons-collections</artifactId>
121                                 </exclusion>
122                                 <exclusion>
123                                         <groupId>org.springframework</groupId>
124                                         <artifactId>spring-core</artifactId>
125                                 </exclusion>
126                         </exclusions>
127                 </dependency>
128
129         </dependencies>
130         <build>
131                 <plugins>
132                         <plugin>
133                                 <groupId>org.apache.maven.plugins</groupId>
134                                 <artifactId>maven-jar-plugin</artifactId>
135                                 <version>2.4</version>
136                                 <configuration>
137                                         <archive>
138                                                 <manifest>
139                                                         <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
140                                                 </manifest>
141                                         </archive>
142                                 </configuration>
143                         </plugin>
144                         <plugin>
145                                 <groupId>org.apache.maven.plugins</groupId>
146                                 <artifactId>maven-shade-plugin</artifactId>
147                                 <version>2.3</version>
148                                 <configuration>
149                                         <createDependencyReducedPom>true</createDependencyReducedPom>
150                                         <filters>
151                                                 <filter>
152                                                         <artifact>*:*</artifact>
153                                                         <excludes>
154                                                                 <exclude>META-INF/*.SF</exclude>
155                                                                 <exclude>META-INF/*.DSA</exclude>
156                                                                 <exclude>META-INF/*.RSA</exclude>
157                                                         </excludes>
158                                                 </filter>
159                                         </filters>
160                                 </configuration>
161                                 <executions>
162                                         <execution>
163                                                 <phase>package</phase>
164                                                 <goals>
165                                                         <goal>shade</goal>
166                                                 </goals>
167                                                 <configuration>
168                                                         <transformers>
169                                                                 <transformer
170                                                                         implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
171                                                                 <transformer
172                                                                         implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
173                                                                         <mainClass>org.onap.msb.apiroute.ApiRouteApp</mainClass>
174                                                                 </transformer>
175                                                         </transformers>
176                                                 </configuration>
177                                         </execution>
178                                 </executions>
179                         </plugin>
180                         <plugin>
181                                 <groupId>org.apache.maven.plugins</groupId>
182                                 <artifactId>maven-clean-plugin</artifactId>
183                                 <version>3.0.0</version>
184                                 <executions>
185                                         <execution>
186                                                 <id>clean-generated-files</id>
187                                                 <phase>generate-sources</phase>
188                                                 <goals>
189                                                         <goal>clean</goal>
190                                                 </goals>
191                                                 <configuration>
192                                                         <filesets>
193                                                                 <fileset>
194                                                                         <directory>${project.build.directory}/generated-sources</directory>
195                                                                 </fileset>
196                                                         </filesets>
197                                                 </configuration>
198                                         </execution>
199                                 </executions>
200                         </plugin>
201                 </plugins>
202                 <resources>
203                         <resource>
204                                 <directory>src/main/java</directory>
205                                 <includes>
206                                         <include>**/*.properties</include>
207                                 </includes>
208                         </resource>
209                         <resource>
210                                 <directory>src/main/resources</directory>
211                         </resource>
212                 </resources>
213         </build>
214 </project>