clean the esr-server parent pom.
[aai/esr-server.git] / esr-parent / 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.oparent</groupId>
22         <artifactId>oparent</artifactId>
23         <version>1.0.0-SNAPSHOT</version>
24     </parent>
25         
26     <modelVersion>4.0.0</modelVersion>
27     <groupId>org.onap.aai.esr-server</groupId>
28     <artifactId>esrparent-aggregator</artifactId>
29     <name>esr-server/esr-parent</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         
119     <build>
120         <pluginManagement>
121             <plugins>
122                 <plugin>
123                     <groupId>org.eclipse.m2e</groupId>
124                     <artifactId>lifecycle-mapping</artifactId>
125                     <version>1.0.0</version>
126                 </plugin>
127                 <plugin>
128                     <groupId>org.apache.maven.plugins</groupId>
129                     <artifactId>maven-compiler-plugin</artifactId>
130                     <version>3.3</version>
131                     <configuration>
132                         <verbose>true</verbose>
133                         <fork>true</fork>
134                         <compilerVersion>1.7</compilerVersion>
135                         <source>1.7</source>
136                         <target>1.7</target>
137                         <encoding>UTF-8</encoding>
138                         <debug>true</debug>
139                     </configuration>
140                 </plugin>
141                 <plugin>
142                     <groupId>org.apache.maven.plugins</groupId>
143                     <artifactId>maven-jar-plugin</artifactId>
144                     <version>2.6</version>
145                     <configuration>
146                         <archive>
147                             <addMavenDescriptor>false</addMavenDescriptor>
148                         </archive>
149                         <forceCreation>true</forceCreation>
150                     </configuration>
151                 </plugin>
152                 <plugin>
153                     <groupId>org.apache.maven.plugins</groupId>
154                     <artifactId>maven-shade-plugin</artifactId>
155                     <version>2.4</version>
156                 </plugin>
157                 <plugin>
158                     <groupId>org.apache.maven.plugins</groupId>
159                     <artifactId>maven-dependency-plugin</artifactId>
160                     <version>2.10</version>          
161                 </plugin>
162                 <plugin>
163                     <groupId>org.apache.maven.plugins</groupId>
164                     <artifactId>maven-resources-plugin</artifactId>
165                     <version>2.7</version>
166                     <configuration>
167                         <encoding>UTF-8</encoding>
168                         <nonFilteredFileExtensions>
169                             <nonFilteredFileExtension>pdf</nonFilteredFileExtension>
170                             <nonFilteredFileExtension>swf</nonFilteredFileExtension>
171                             <nonFilteredFileExtension>exe</nonFilteredFileExtension>
172                             <nonFilteredFileExtension>png</nonFilteredFileExtension>
173                             <nonFilteredFileExtension>gif</nonFilteredFileExtension>
174                             <nonFilteredFileExtension>jpg</nonFilteredFileExtension>
175                             <nonFilteredFileExtension>jpeg</nonFilteredFileExtension>
176                             <nonFilteredFileExtension>bmp</nonFilteredFileExtension>
177                             <nonFilteredFileExtension>eot</nonFilteredFileExtension>
178                             <nonFilteredFileExtension>ttf</nonFilteredFileExtension>
179                             <nonFilteredFileExtension>svg</nonFilteredFileExtension>
180                             <nonFilteredFileExtension>woff</nonFilteredFileExtension>
181                             <nonFilteredFileExtension>woff2</nonFilteredFileExtension>
182                             <nonFilteredFileExtension>mso</nonFilteredFileExtension>
183                             <nonFilteredFileExtension>wmz</nonFilteredFileExtension>
184                             <nonFilteredFileExtension>emz</nonFilteredFileExtension>
185                             <nonFilteredFileExtension>otf</nonFilteredFileExtension>
186                         </nonFilteredFileExtensions>
187                     </configuration>
188                 </plugin>
189                 <plugin>
190                     <groupId>org.codehaus.mojo</groupId>
191                     <artifactId>build-helper-maven-plugin</artifactId>
192                     <version>1.10</version>
193                 </plugin>
194                 <plugin>
195                     <groupId>com.mycila</groupId>
196                     <artifactId>license-maven-plugin</artifactId>
197                     <version>3.0.rc1</version>
198                 </plugin>
199                 <plugin>
200                     <artifactId>maven-antrun-plugin</artifactId>
201                     <version>1.8</version>
202                 </plugin>
203             </plugins>
204         </pluginManagement>
205     </build>
206 </project>