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