c5395ee2b19433fe625c7b2b9cb58b12815930fe
[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         <!--<lombok.version>1.16.4</lombok.version>-->
39         <mysql-connector-java.version>5.1.18</mysql-connector-java.version>
40         <junit.version>4.10</junit.version>
41         <org.powermock.version>1.4.10</org.powermock.version>
42         <h2database.version>1.4.182</h2database.version>
43         <org.apache.ant.version>1.8.2</org.apache.ant.version>
44     </properties>
45
46     <dependencyManagement>
47         <dependencies>
48             <dependency>
49                 <groupId>io.dropwizard</groupId>
50                 <artifactId>dropwizard-core</artifactId>
51                 <version>${dropwizard.version}</version>
52             </dependency>
53             <dependency>
54                 <groupId>io.dropwizard</groupId>
55                 <artifactId>dropwizard-assets</artifactId>
56                 <version>${dropwizard.version}</version>
57             </dependency>
58             <dependency>
59                 <groupId>io.dropwizard</groupId>
60                 <artifactId>dropwizard-hibernate</artifactId>
61                 <version>${dropwizard.version}</version>
62             </dependency>
63             <dependency>
64                 <groupId>io.swagger</groupId>
65                 <artifactId>swagger-jersey2-jaxrs</artifactId>
66                 <version>${swagger.version}</version>
67             </dependency> 
68
69             <!-- jersey -->
70             <dependency>
71                 <groupId>org.glassfish.jersey.core</groupId>
72                 <artifactId>jersey-server</artifactId>
73                 <version>${jersey.version}</version>
74             </dependency>
75             <dependency>
76                 <groupId>org.glassfish.jersey.media</groupId>
77                 <artifactId>jersey-media-multipart</artifactId>
78                 <version>${jersey.version}</version>
79             </dependency>
80             <dependency>
81                 <groupId>org.glassfish.jersey.containers</groupId>
82                 <artifactId>jersey-container-servlet-core</artifactId>
83                 <version>${jersey.version}</version>
84             </dependency>
85             <!-- consumer -->
86             <dependency>
87                 <groupId>com.eclipsesource.jaxrs</groupId>
88                 <artifactId>consumer</artifactId>
89                 <version>${jaxrs.consumer.version}</version>
90             </dependency>
91             <!-- gson -->
92             <dependency>
93                 <groupId>com.google.code.gson</groupId>
94                 <artifactId>gson</artifactId>
95                 <version>${gson.version}</version>
96             </dependency> 
97             <dependency>
98                 <groupId>mysql</groupId>
99                 <artifactId>mysql-connector-java</artifactId>
100                 <version>${mysql-connector-java.version}</version>
101             </dependency>
102             <!-- UT -->
103             <dependency>  
104                 <groupId>junit</groupId>  
105                 <artifactId>junit</artifactId>  
106                 <version>${junit.version}</version>
107             </dependency> 
108             <dependency> 
109                 <groupId>org.powermock</groupId> 
110                 <artifactId>powermock-module-junit4</artifactId> 
111                 <version>${org.powermock.version}</version>
112             </dependency> 
113             <dependency> 
114                 <groupId>org.powermock</groupId> 
115                 <artifactId>powermock-api-mockito</artifactId> 
116                 <version>${org.powermock.version}</version>
117             </dependency> 
118             <dependency>
119                 <groupId>com.h2database</groupId>
120                 <artifactId>h2</artifactId>
121                 <version>${h2database.version}</version>
122                 <scope>test</scope>
123             </dependency>
124             <dependency>
125                 <groupId>org.apache.ant</groupId>
126                 <artifactId>ant</artifactId>
127                 <version>${org.apache.ant.version}</version>
128             </dependency>
129             <!-- UT end -->
130         </dependencies>
131     </dependencyManagement>
132 </project>