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