inherit from oparent
[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.0.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.0.0-SNAPSHOT</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                 <dependency>
39                         <groupId>io.swagger</groupId>
40                         <artifactId>swagger-jersey2-jaxrs</artifactId>
41                         <scope>compile</scope>
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         </dependencies>
111         <build>
112                 <plugins>
113                         <plugin>
114                                 <groupId>org.apache.maven.plugins</groupId>
115                                 <artifactId>maven-jar-plugin</artifactId>
116                                 <version>2.4</version>
117                                 <configuration>
118                                         <archive>
119                                                 <manifest>
120                                                         <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
121                                                 </manifest>
122                                         </archive>
123                                 </configuration>
124                         </plugin>
125                         <plugin>
126                                 <groupId>org.apache.maven.plugins</groupId>
127                                 <artifactId>maven-shade-plugin</artifactId>
128                                 <version>2.3</version>
129                                 <configuration>
130                                         <createDependencyReducedPom>true</createDependencyReducedPom>
131                                         <filters>
132                                                 <filter>
133                                                         <artifact>*:*</artifact>
134                                                         <excludes>
135                                                                 <exclude>META-INF/*.SF</exclude>
136                                                                 <exclude>META-INF/*.DSA</exclude>
137                                                                 <exclude>META-INF/*.RSA</exclude>
138                                                         </excludes>
139                                                 </filter>
140                                         </filters>
141                                 </configuration>
142                                 <executions>
143                                         <execution>
144                                                 <phase>package</phase>
145                                                 <goals>
146                                                         <goal>shade</goal>
147                                                 </goals>
148                                                 <configuration>
149                                                         <transformers>
150                                                                 <transformer
151                                                                         implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
152                                                                 <transformer
153                                                                         implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
154                                                                         <mainClass>org.onap.msb.apiroute.ApiRouteApp</mainClass>
155                                                                 </transformer>
156                                                         </transformers>
157                                                 </configuration>
158                                         </execution>
159                                 </executions>
160                         </plugin>
161                 </plugins>
162                 <resources>
163                         <resource>
164                                 <directory>src/main/java</directory>
165                                 <includes>
166                                         <include>**/*.properties</include>
167                                 </includes>
168                         </resource>
169                         <resource>
170                                 <directory>src/main/resources</directory>
171                         </resource>
172                 </resources>
173         </build>
174 </project>