Merge "sonar fix: Rsrc handling nokia/CommonUtil"
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / pom.xml
1  <!--
2     Copyright 2016-2017, Nokia Corporation
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8         http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15  -->
16 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18         <modelVersion>4.0.0</modelVersion>
19
20         <artifactId>vfcadaptor</artifactId>
21         <version>1.1.0-SNAPSHOT</version>
22         <packaging>war</packaging>
23
24         <name>vfc/nfvo/driver/vnfm/svnfm/nokia/vnfmdriver/vfcadaptorservice/vfcadaptor</name>
25         <description>svnfm vnfm driver</description>
26         
27   <parent>
28                 <groupId>org.onap.vfc.nfvo.driver.vnfm.svnfm</groupId>
29                 <artifactId>vfcadaptor-service</artifactId>
30                 <version>1.1.0-SNAPSHOT</version>
31         </parent>
32
33         <properties>
34                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
36                 <java.version>1.8</java.version>
37                 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>  
38         <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>  
39         <sonar.jacoco.itReportPath>${project.basedir}/target/jacoco.exec</sonar.jacoco.itReportPath>  
40         <sonar.language>java</sonar.language> 
41         </properties>
42         
43         <dependencies>
44         <!-- 
45                 <dependency>
46                         <groupId>org.springframework.boot</groupId>
47                         <artifactId>spring-boot-starter-data-jpa</artifactId>
48                 </dependency>
49          -->
50                 <dependency>
51                         <groupId>org.springframework.boot</groupId>
52                         <artifactId>spring-boot-starter-web</artifactId>
53                 </dependency>
54                 <dependency>
55             <groupId>org.springframework.boot</groupId>
56             <artifactId>spring-boot-starter</artifactId>
57             <!-- 
58             <exclusions>
59                 <exclusion>
60                     <groupId>org.springframework.boot</groupId>
61                     <artifactId>spring-boot-starter-logging</artifactId>
62                 </exclusion>
63             </exclusions>
64              -->
65         </dependency>
66         <dependency>
67             <groupId>org.springframework.boot</groupId>
68             <artifactId>spring-boot-starter-logging</artifactId>
69         </dependency>
70 <!-- 
71                 <dependency>
72             <groupId>org.springframework.boot</groupId>
73             <artifactId>spring-boot-starter-log4j2</artifactId>
74             <exclusions>
75                 <exclusion>
76                     <groupId>org.apache.logging.log4j</groupId>
77                     <artifactId>log4j-slf4j-impl</artifactId>
78                 </exclusion>
79             </exclusions>
80         </dependency>
81
82                 <dependency>
83                         <groupId>mysql</groupId>
84                         <artifactId>mysql-connector-java</artifactId>
85                 </dependency>
86  
87                 <dependency>
88                         <groupId>org.springframework.boot</groupId>
89                         <artifactId>spring-boot-starter-tomcat</artifactId>
90                         <scope>provided</scope>
91                 </dependency>
92                 <dependency>
93                         <groupId>org.apache.tomcat.embed</groupId>
94                         <artifactId>tomcat-embed-jasper</artifactId>
95                         <scope>provided</scope>
96                 </dependency>
97  -->            
98  
99      <dependency>
100         <groupId>org.mariadb.jdbc</groupId>
101         <artifactId>mariadb-java-client</artifactId>
102         <version>2.2.2</version>
103      </dependency>
104                  <dependency>
105                           <groupId>org.springframework.boot</groupId>
106                           <artifactId>spring-boot-starter-test</artifactId>
107                           <scope>test</scope>
108                 </dependency>
109
110     <dependency>
111             <groupId>commons-io</groupId>
112             <artifactId>commons-io</artifactId>
113             <version>2.5</version>
114     </dependency>
115         
116                 <dependency>
117                         <groupId>org.apache.httpcomponents</groupId>
118                         <artifactId>httpclient</artifactId>
119                 </dependency>
120                 <dependency>
121                         <groupId>com.google.code.gson</groupId>
122                         <artifactId>gson</artifactId>
123                 </dependency>
124                 <dependency>
125                         <groupId>org.json</groupId>
126                         <artifactId>json</artifactId>
127                 </dependency>
128                 <dependency>
129                         <groupId>io.dropwizard</groupId>
130                         <artifactId>dropwizard-core</artifactId>
131                         <version>0.8.0</version>
132                 </dependency>
133                 
134                 <dependency>
135           <groupId>com.jcraft</groupId>
136           <artifactId>jsch</artifactId>
137           <version>0.1.54</version>
138         </dependency>
139         
140         <dependency>
141           <groupId>commons-net</groupId>
142           <artifactId>commons-net</artifactId>
143           <version>3.6</version>
144         </dependency>
145         <dependency>
146           <groupId>org.zeroturnaround</groupId>
147           <artifactId>zt-zip</artifactId>
148           <version>1.12</version>
149         </dependency>
150         
151         <dependency>
152             <groupId>org.mybatis.spring.boot</groupId>
153             <artifactId>mybatis-spring-boot-starter</artifactId>
154             <version>1.3.1</version>
155         </dependency>
156
157 <dependency>
158     <groupId>ca.juliusdavies</groupId>
159     <artifactId>not-yet-commons-ssl</artifactId>
160     <version>0.3.9</version>
161 </dependency>
162         </dependencies>
163     <build>
164  <!-- 
165         <pluginManagement>  
166       <plugins>  
167         <plugin>  
168           <groupId>org.jacoco</groupId>  
169           <artifactId>jacoco-maven-plugin</artifactId>  
170           <version>0.7.9</version>
171         </plugin>  
172       </plugins>  
173     </pluginManagement>
174 -->    
175         <plugins>
176             <!-- 
177             <plugin>
178                 <groupId>org.jacoco</groupId>
179                 <artifactId>jacoco-maven-plugin</artifactId>
180                 <configuration>  
181                     <includes>org.onap.vfc.nfvo.driver.vnfm.svnfm.*</includes>  
182                 </configuration>
183                 <executions>
184                     <execution>
185                         <id>default-prepare-agent</id>
186                         <goals>
187                             <goal>prepare-agent</goal>
188                         </goals>
189                     </execution>
190                     <execution>
191                         <id>default-report</id>
192                         <phase>prepare-package</phase>
193                         <goals>
194                             <goal>report</goal>
195                         </goals>
196                     </execution>
197                     <execution>
198                         <id>default-prepare-agent-integration</id>
199                         <goals>
200                             <goal>prepare-agent-integration</goal>
201                         </goals>
202                     </execution>
203                     <execution>
204                         <id>default-check</id>
205                         <goals>
206                             <goal>check</goal>
207                         </goals>
208                     </execution>
209                     <execution>
210                         <id>default-report-integration</id>
211                         <goals>
212                             <goal>report-integration</goal>
213                         </goals>
214                     </execution>
215                 </executions>
216             </plugin>
217              -->
218             <plugin>
219                 <groupId>org.springframework.boot</groupId>
220                 <artifactId>spring-boot-maven-plugin</artifactId>
221                 <version>1.5.7.RELEASE</version>
222             </plugin>
223             <plugin>
224              <groupId>org.apache.maven.plugins</groupId>
225              <artifactId>maven-compiler-plugin</artifactId>
226              <version>3.5</version>
227              <configuration>
228                  <source>1.8</source>
229                  <target>1.8</target>
230              </configuration>
231             </plugin>
232             <plugin>
233                 <groupId>org.apache.maven.plugins</groupId>
234                 <artifactId>maven-surefire-plugin</artifactId>
235             </plugin>
236             <!-- 
237             <plugin>
238                 <groupId>org.apache.maven.plugins</groupId>
239                 <artifactId>maven-failsafe-plugin</artifactId>
240                 <executions>
241                     <execution>
242                     <id>default-integration-test</id>
243                     <goals>
244                         <goal>integration-test</goal>
245                     </goals>
246                     </execution>
247                 </executions>
248             </plugin>
249              -->
250         </plugins>
251     </build>
252  <!--
253     <reporting>
254     <plugins>
255       <plugin>
256         <groupId>org.jacoco</groupId>
257         <artifactId>jacoco-maven-plugin</artifactId>
258         <reportSets>
259           <reportSet>
260             <reports>
261               <report>report</report>
262             </reports>
263           </reportSet>
264         </reportSets>
265       </plugin>
266     </plugins>
267   </reporting>
268  
269   -->
270 </project>