Raise the version of dropwizard.
[aai/esr-server.git] / 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     <modelVersion>4.0.0</modelVersion>
21     <parent>
22         <groupId>org.onap.oparent</groupId>
23         <artifactId>oparent</artifactId>
24         <version>0.1.1</version>
25     </parent>
26         
27         <groupId>org.onap.aai.esr-server</groupId>
28     <artifactId>aai-esr-server</artifactId>
29     <packaging>pom</packaging>
30
31     <version>1.1.0-SNAPSHOT</version>
32     <name>aai-esr-server</name>
33     <modules>
34         <module>esr-mgr</module>
35                 <module>standalone</module>
36     </modules>
37         
38         <properties>
39         <dropwizard.version>1.2.2</dropwizard.version>
40         <swagger.version>1.5.3</swagger.version>
41         <jersey.version>2.16</jersey.version>
42         <jaxrs.consumer.version>5.0</jaxrs.consumer.version>
43         <gson.version>2.2.4</gson.version>
44         <junit.version>4.10</junit.version>
45         <org.apache.ant.version>1.8.2</org.apache.ant.version>
46     </properties>
47
48     <dependencyManagement>
49         <dependencies>
50             <dependency>
51                 <groupId>io.dropwizard</groupId>
52                 <artifactId>dropwizard-core</artifactId>
53                 <version>${dropwizard.version}</version>
54             </dependency>
55             <dependency>
56                 <groupId>io.dropwizard</groupId>
57                 <artifactId>dropwizard-assets</artifactId>
58                 <version>${dropwizard.version}</version>
59             </dependency>
60             <dependency>
61                 <groupId>io.dropwizard</groupId>
62                 <artifactId>dropwizard-hibernate</artifactId>
63                 <version>${dropwizard.version}</version>
64             </dependency>
65             <dependency>
66                 <groupId>io.swagger</groupId>
67                 <artifactId>swagger-jersey2-jaxrs</artifactId>
68                 <version>${swagger.version}</version>
69             </dependency> 
70
71             <!-- jersey -->
72             <dependency>
73                 <groupId>org.glassfish.jersey.core</groupId>
74                 <artifactId>jersey-server</artifactId>
75                 <version>${jersey.version}</version>
76             </dependency>
77             <dependency>
78                 <groupId>org.glassfish.jersey.media</groupId>
79                 <artifactId>jersey-media-multipart</artifactId>
80                 <version>${jersey.version}</version>
81             </dependency>
82             <dependency>
83                 <groupId>org.glassfish.jersey.containers</groupId>
84                 <artifactId>jersey-container-servlet-core</artifactId>
85                 <version>${jersey.version}</version>
86             </dependency>
87             <!-- consumer -->
88             <dependency>
89                 <groupId>com.eclipsesource.jaxrs</groupId>
90                 <artifactId>consumer</artifactId>
91                 <version>${jaxrs.consumer.version}</version>
92             </dependency>
93             <!-- gson -->
94             <dependency>
95                 <groupId>com.google.code.gson</groupId>
96                 <artifactId>gson</artifactId>
97                 <version>${gson.version}</version>
98             </dependency> 
99             <!-- UT -->
100             <dependency>  
101                 <groupId>junit</groupId>  
102                 <artifactId>junit</artifactId>  
103                 <version>${junit.version}</version>
104             </dependency> 
105             <dependency>
106                 <groupId>org.apache.ant</groupId>
107                 <artifactId>ant</artifactId>
108                 <version>${org.apache.ant.version}</version>
109             </dependency>
110             <!-- UT end -->
111         </dependencies>
112     </dependencyManagement>
113         
114     <build>
115         <pluginManagement>
116             <plugins>
117                 <plugin>
118                     <groupId>org.eclipse.m2e</groupId>
119                     <artifactId>lifecycle-mapping</artifactId>
120                     <version>1.0.0</version>
121                 </plugin>
122                 <plugin>
123                     <groupId>org.apache.maven.plugins</groupId>
124                     <artifactId>maven-compiler-plugin</artifactId>
125                     <version>3.3</version>
126                     <configuration>
127                         <verbose>true</verbose>
128                         <fork>true</fork>
129                         <compilerVersion>1.7</compilerVersion>
130                         <source>1.7</source>
131                         <target>1.7</target>
132                         <encoding>UTF-8</encoding>
133                         <debug>true</debug>
134                     </configuration>
135                 </plugin>
136                 <plugin>
137                     <groupId>org.apache.maven.plugins</groupId>
138                     <artifactId>maven-jar-plugin</artifactId>
139                     <version>2.6</version>
140                     <configuration>
141                         <archive>
142                             <addMavenDescriptor>false</addMavenDescriptor>
143                         </archive>
144                         <forceCreation>true</forceCreation>
145                     </configuration>
146                 </plugin>
147                 <plugin>
148                     <groupId>org.apache.maven.plugins</groupId>
149                     <artifactId>maven-shade-plugin</artifactId>
150                     <version>2.4</version>
151                 </plugin>
152                 <plugin>
153                     <groupId>org.apache.maven.plugins</groupId>
154                     <artifactId>maven-dependency-plugin</artifactId>
155                     <version>2.10</version>          
156                 </plugin>
157                 <plugin>
158                     <groupId>org.apache.maven.plugins</groupId>
159                     <artifactId>maven-resources-plugin</artifactId>
160                     <version>2.7</version>
161                     <configuration>
162                         <encoding>UTF-8</encoding>
163                         <nonFilteredFileExtensions>
164                             <nonFilteredFileExtension>pdf</nonFilteredFileExtension>
165                             <nonFilteredFileExtension>swf</nonFilteredFileExtension>
166                             <nonFilteredFileExtension>exe</nonFilteredFileExtension>
167                             <nonFilteredFileExtension>png</nonFilteredFileExtension>
168                             <nonFilteredFileExtension>gif</nonFilteredFileExtension>
169                             <nonFilteredFileExtension>jpg</nonFilteredFileExtension>
170                             <nonFilteredFileExtension>jpeg</nonFilteredFileExtension>
171                             <nonFilteredFileExtension>bmp</nonFilteredFileExtension>
172                             <nonFilteredFileExtension>eot</nonFilteredFileExtension>
173                             <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
174                             <nonFilteredFileExtension>svg</nonFilteredFileExtension>
175                             <nonFilteredFileExtension>woff</nonFilteredFileExtension>
176                             <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
177                             <nonFilteredFileExtension>mso</nonFilteredFileExtension>
178                             <nonFilteredFileExtension>wmz</nonFilteredFileExtension>
179                             <nonFilteredFileExtension>emz</nonFilteredFileExtension>
180                             <nonFilteredFileExtension>otf</nonFilteredFileExtension>
181                         </nonFilteredFileExtensions>
182                     </configuration>
183                 </plugin>
184                 <plugin>
185                     <groupId>org.codehaus.mojo</groupId>
186                     <artifactId>build-helper-maven-plugin</artifactId>
187                     <version>1.10</version>
188                 </plugin>
189                 <plugin>
190                     <groupId>com.mycila</groupId>
191                     <artifactId>license-maven-plugin</artifactId>
192                     <version>3.0.rc1</version>
193                 </plugin>
194                 <plugin>
195                     <artifactId>maven-antrun-plugin</artifactId>
196                     <version>1.8</version>
197                 </plugin>
198             </plugins>
199         </pluginManagement>
200     </build>   
201         
202         
203 </project>