Modify the get request body method
[usecase-ui/server.git] / server / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3     Copyright (C) 2017 CMCC, Inc. and others. All rights reserved.
4
5     Licensed under the Apache License, Version 2.0 (the "License");
6     you may not use this file except in compliance with the License.
7     You may obtain a copy of the License at
8
9         http://www.apache.org/licenses/LICENSE-2.0
10
11     Unless required by applicable law or agreed to in writing, software
12     distributed under the License is distributed on an "AS IS" BASIS,
13     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14     See the License for the specific language governing permissions and
15     limitations under the License.
16  -->
17 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18
19     <parent>
20         <groupId>org.onap.usecase-ui.server</groupId>
21         <artifactId>usecase-ui-server-parent</artifactId>
22         <version>1.3.0-SNAPSHOT</version>
23     </parent>
24
25     <modelVersion>4.0.0</modelVersion>
26     <groupId>org.onap.usecase-ui.server</groupId>
27     <artifactId>usecase-ui-server</artifactId>
28     <version>1.3.0-SNAPSHOT</version>
29     <packaging>jar</packaging>
30     <name>usecase-ui-server/server</name>
31     <description>project for usecase-ui server</description>
32
33     <properties>
34         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
36         <java.version>1.8</java.version>
37         <hibernate.version>5.0.11.Final</hibernate.version>
38         <spring.version>4.3.4.RELEASE</spring.version>
39         <javax.persistence.version>1.0.2</javax.persistence.version>
40         <common.csv.version>1.4</common.csv.version>
41         <jackson.version>2.9.0</jackson.version>
42     </properties>
43
44     <dependencyManagement>
45         <dependencies>
46             <dependency>
47                 <!-- Import dependency management from Spring Boot -->
48                 <groupId>org.springframework.boot</groupId>
49                 <artifactId>spring-boot-starter-parent</artifactId>
50                 <version>1.4.2.RELEASE</version>
51                 <type>pom</type>
52                 <scope>import</scope>
53             </dependency>
54         </dependencies>
55     </dependencyManagement>
56
57     <dependencies>
58         <dependency>
59             <groupId>org.springframework.boot</groupId>
60             <artifactId>spring-boot-starter-actuator</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.springframework.boot</groupId>
64             <artifactId>spring-boot-starter-data-jpa</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.springframework.boot</groupId>
68             <artifactId>spring-boot-starter-data-redis</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.springframework.boot</groupId>
72             <artifactId>spring-boot-starter-data-rest</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>org.springframework.data</groupId>
76             <artifactId>spring-data-rest-hal-browser</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.springframework.boot</groupId>
80             <artifactId>spring-boot-starter-jersey</artifactId>
81         </dependency>
82         <!--dependency>
83             <groupId>org.springframework.boot</groupId>
84             <artifactId>spring-boot-starter-security</artifactId>
85         </dependency-->
86         <dependency>
87             <groupId>org.springframework.boot</groupId>
88             <artifactId>spring-boot-starter-web</artifactId>
89         </dependency>
90         <!--dependency>
91             <groupId>mysql</groupId>
92             <artifactId>mysql-connector-java</artifactId>
93             <scope>runtime</scope>
94         </dependency-->
95         <dependency>
96             <groupId>org.mariadb.jdbc</groupId>
97             <artifactId>mariadb-java-client</artifactId>
98             <version>2.2.2</version>
99         </dependency>
100         <dependency>
101             <groupId>org.projectlombok</groupId>
102             <artifactId>lombok</artifactId>
103             <optional>true</optional>
104         </dependency>
105         <dependency>
106             <groupId>org.springframework.boot</groupId>
107             <artifactId>spring-boot-starter-test</artifactId>
108             <scope>test</scope>
109             <exclusions>
110                 <exclusion>
111                     <groupId>org.mockito</groupId>
112                     <artifactId>mockito-core</artifactId>
113                 </exclusion>
114             </exclusions>
115         </dependency>
116         <dependency>
117             <groupId>org.springframework.restdocs</groupId>
118             <artifactId>spring-restdocs-mockmvc</artifactId>
119             <scope>test</scope>
120         </dependency>
121         <dependency>
122             <groupId>org.springframework.security</groupId>
123             <artifactId>spring-security-test</artifactId>
124             <scope>test</scope>
125         </dependency>
126         <dependency>
127             <groupId>org.springframework</groupId>
128             <artifactId>spring-core</artifactId>
129             <version>${spring.version}</version>
130         </dependency>
131         <dependency>
132             <groupId>org.springframework</groupId>
133             <artifactId>spring-orm</artifactId>
134             <version>${spring.version}</version>
135         </dependency>
136         <dependency>
137             <groupId>org.springframework</groupId>
138             <artifactId>spring-context</artifactId>
139             <version>${spring.version}</version>
140         </dependency>
141         <dependency>
142             <groupId>org.springframework</groupId>
143             <artifactId>spring-jdbc</artifactId>
144             <version>${spring.version}</version>
145         </dependency>
146         <dependency>
147             <groupId>org.springframework</groupId>
148             <artifactId>spring-webmvc</artifactId>
149             <version>${spring.version}</version>
150         </dependency>
151         <dependency>
152             <groupId>org.hibernate</groupId>
153             <artifactId>hibernate-core</artifactId>
154             <version>${hibernate.version}</version>
155         </dependency>
156         <dependency>
157             <groupId>javax.persistence</groupId>
158             <artifactId>persistence-api</artifactId>
159             <version>${javax.persistence.version}</version>
160         </dependency>
161
162         <!-- commons-csv -->
163         <dependency>
164             <groupId>org.apache.commons</groupId>
165             <artifactId>commons-csv</artifactId>
166             <version>${common.csv.version}</version>
167         </dependency>
168
169         <!-- jackson-databind -->
170         <dependency>
171             <groupId>com.fasterxml.jackson.core</groupId>
172             <artifactId>jackson-databind</artifactId>
173             <version>${jackson.version}</version>
174         </dependency>
175
176         <!-- jackson-core -->
177         <dependency>
178             <groupId>com.fasterxml.jackson.core</groupId>
179             <artifactId>jackson-core</artifactId>
180             <version>${jackson.version}</version>
181         </dependency>
182
183         <!-- jackson-annotations -->
184         <dependency>
185             <groupId>com.fasterxml.jackson.core</groupId>
186             <artifactId>jackson-annotations</artifactId>
187             <version>${jackson.version}</version>
188         </dependency>
189
190         <dependency>
191             <groupId>com.squareup.retrofit2</groupId>
192             <artifactId>retrofit</artifactId>
193             <version>2.3.0</version>
194         </dependency>
195         <dependency>
196             <groupId>com.squareup.retrofit2</groupId>
197             <artifactId>converter-jackson</artifactId>
198             <version>2.3.0</version>
199         </dependency>
200
201         <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
202         <dependency>
203             <groupId>com.alibaba</groupId>
204             <artifactId>fastjson</artifactId>
205             <version>1.2.23</version>
206         </dependency>
207         
208         <dependency>
209                     <groupId>com.alibaba</groupId>
210                     <artifactId>dubbo</artifactId>
211                     <version>2.6.5</version>
212                 </dependency>
213         <dependency>
214             <groupId>org.openecomp.sdc.jtosca</groupId>
215             <artifactId>jtosca</artifactId>
216             <version>1.1.1</version>
217         </dependency>
218
219         <dependency>
220             <groupId>com.google.guava</groupId>
221             <artifactId>guava</artifactId>
222             <version>23.0</version>
223         </dependency>
224
225         <dependency>
226             <groupId>org.onap.msb.java-sdk</groupId>
227             <artifactId>msb-java-sdk</artifactId>
228             <version>1.0.0</version>
229         </dependency>
230
231         <dependency>
232             <groupId>org.powermock</groupId>
233             <artifactId>powermock-api-mockito</artifactId>
234             <version>1.6.5</version>
235         </dependency>
236         <dependency>
237             <groupId>org.mockito</groupId>
238             <artifactId>mockito-all</artifactId>
239             <version>1.9.5</version>
240         </dependency>
241         <dependency>
242             <groupId>org.powermock</groupId>
243             <artifactId>powermock-module-junit4</artifactId>
244             <version>1.6.5</version>
245             <type>jar</type>
246             <scope>compile</scope>
247         </dependency>
248         <dependency>
249             <groupId>org.jmockit</groupId>
250             <artifactId>jmockit</artifactId>
251             <version>1.19</version>
252             <scope>test</scope>
253         </dependency>
254         <dependency>
255             <groupId>junit</groupId>
256             <artifactId>junit</artifactId>
257             <version>4.12</version>
258         </dependency>
259         <dependency>
260             <groupId>org.jmockit</groupId>
261             <artifactId>jmockit-coverage</artifactId>
262             <version>1.19</version>
263             <scope>test</scope>
264         </dependency>
265     </dependencies>
266
267     <build>
268         <plugins>
269             <plugin>
270                 <groupId>org.springframework.boot</groupId>
271                 <artifactId>spring-boot-maven-plugin</artifactId>
272                 <configuration>
273                     <executable>true</executable>
274                 </configuration>
275                 <executions>
276                     <execution>
277                         <goals>
278                             <goal>repackage</goal>
279                         </goals>
280                     </execution>
281                 </executions>
282             </plugin>
283             <plugin>
284                 <groupId>org.apache.maven.plugins</groupId>
285                 <artifactId>maven-compiler-plugin</artifactId>
286                 <version>3.3</version>
287                 <configuration>
288                     <source>1.8</source>
289                     <target>1.8</target>
290                 </configuration>
291             </plugin>
292             <plugin>
293                 <groupId>org.apache.maven.plugins</groupId>
294                 <artifactId>maven-antrun-plugin</artifactId>
295                 <version>1.8</version>
296             </plugin>
297             <plugin>
298                 <groupId>org.apache.maven.plugins</groupId>
299                 <artifactId>maven-surefire-plugin</artifactId>
300                 <version>2.19</version>
301                 <configuration>
302                     <testFailureIgnore>true</testFailureIgnore>
303                     <includes>
304                         <include>**/*Spec*</include>
305                         <include>**/Test*.java</include>
306                         <include>**/*Test.java</include>
307                         <include>**/*TestCase.java</include>
308                         <include>**/Test*.scala</include>
309                         <include>**/*Test.scala</include>
310                         <include>**/*TestCase.scala</include>
311                     </includes>
312                 </configuration>
313             </plugin>
314         </plugins>
315     </build>
316
317     <repositories>
318         <repository>
319             <id>spring-milestones</id>
320             <name>Spring Milestones</name>
321             <url>https://repo.spring.io/milestone</url>
322             <snapshots>
323                 <enabled>false</enabled>
324             </snapshots>
325         </repository>
326     </repositories>
327
328     <pluginRepositories>
329         <pluginRepository>
330             <id>spring-milestones</id>
331             <name>Spring Milestones</name>
332             <url>https://repo.spring.io/milestone</url>
333             <snapshots>
334                 <enabled>false</enabled>
335             </snapshots>
336         </pluginRepository>
337     </pluginRepositories>
338 </project>