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