c60b0d07afaa0233a2f3995a804dc6a7fa396993
[aai/esr-server.git] / esr-parent / esrparent / pom.xml
1 <?xml version="1.0"?>
2 <!--
3
4     Copyright 2016 ZTE Corporation.
5
6     Licensed under the Apache License, Version 2.0 (the "License");
7     you may not use this file except in compliance with the License.
8     You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12     Unless required by applicable law or agreed to in writing, software
13     distributed under the License is distributed on an "AS IS" BASIS,
14     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15     See the License for the specific language governing permissions and
16     limitations under the License.
17
18 -->
19 <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">
20     <parent>
21         <groupId>org.onap.aai.esr-server</groupId>
22         <artifactId>esrparent-lite</artifactId>
23         <version>1.0.0-SNAPSHOT</version>
24         <relativePath>../esrparent-lite</relativePath>
25     </parent>
26
27     <modelVersion>4.0.0</modelVersion>
28     <artifactId>esrparent</artifactId>
29     <name>esr-server/esr-parent/esrparent</name>
30     <packaging>pom</packaging>
31
32     <properties>
33         <dropwizard.version>0.8.0</dropwizard.version>
34         <swagger.version>1.5.3</swagger.version>
35         <jersey.version>2.16</jersey.version>
36         <jaxrs.consumer.version>5.0</jaxrs.consumer.version>
37         <gson.version>2.2.4</gson.version>
38         <junit.version>4.10</junit.version>
39         <org.powermock.version>1.4.10</org.powermock.version>
40         <org.apache.ant.version>1.8.2</org.apache.ant.version>
41     </properties>
42
43     <dependencyManagement>
44         <dependencies>
45             <dependency>
46                 <groupId>io.dropwizard</groupId>
47                 <artifactId>dropwizard-core</artifactId>
48                 <version>${dropwizard.version}</version>
49             </dependency>
50             <dependency>
51                 <groupId>io.dropwizard</groupId>
52                 <artifactId>dropwizard-assets</artifactId>
53                 <version>${dropwizard.version}</version>
54             </dependency>
55             <dependency>
56                 <groupId>io.dropwizard</groupId>
57                 <artifactId>dropwizard-hibernate</artifactId>
58                 <version>${dropwizard.version}</version>
59             </dependency>
60             <dependency>
61                 <groupId>io.swagger</groupId>
62                 <artifactId>swagger-jersey2-jaxrs</artifactId>
63                 <version>${swagger.version}</version>
64             </dependency> 
65
66             <!-- jersey -->
67             <dependency>
68                 <groupId>org.glassfish.jersey.core</groupId>
69                 <artifactId>jersey-server</artifactId>
70                 <version>${jersey.version}</version>
71             </dependency>
72             <dependency>
73                 <groupId>org.glassfish.jersey.media</groupId>
74                 <artifactId>jersey-media-multipart</artifactId>
75                 <version>${jersey.version}</version>
76             </dependency>
77             <dependency>
78                 <groupId>org.glassfish.jersey.containers</groupId>
79                 <artifactId>jersey-container-servlet-core</artifactId>
80                 <version>${jersey.version}</version>
81             </dependency>
82             <!-- consumer -->
83             <dependency>
84                 <groupId>com.eclipsesource.jaxrs</groupId>
85                 <artifactId>consumer</artifactId>
86                 <version>${jaxrs.consumer.version}</version>
87             </dependency>
88             <!-- gson -->
89             <dependency>
90                 <groupId>com.google.code.gson</groupId>
91                 <artifactId>gson</artifactId>
92                 <version>${gson.version}</version>
93             </dependency> 
94             <!-- UT -->
95             <dependency>  
96                 <groupId>junit</groupId>  
97                 <artifactId>junit</artifactId>  
98                 <version>${junit.version}</version>
99             </dependency> 
100             <dependency> 
101                 <groupId>org.powermock</groupId> 
102                 <artifactId>powermock-module-junit4</artifactId> 
103                 <version>${org.powermock.version}</version>
104             </dependency> 
105             <dependency> 
106                 <groupId>org.powermock</groupId> 
107                 <artifactId>powermock-api-mockito</artifactId> 
108                 <version>${org.powermock.version}</version>
109             </dependency> 
110             <dependency>
111                 <groupId>org.apache.ant</groupId>
112                 <artifactId>ant</artifactId>
113                 <version>${org.apache.ant.version}</version>
114             </dependency>
115             <!-- UT end -->
116         </dependencies>
117     </dependencyManagement>
118 </project>