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