Merge "Stream Files handling CommonUtil.java"
[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                 <dependency>
99                         <groupId>org.springframework.boot</groupId>
100                         <artifactId>spring-boot-starter-test</artifactId>
101                         <scope>test</scope>
102                 </dependency>
103
104         <dependency>
105             <groupId>commons-io</groupId>
106             <artifactId>commons-io</artifactId>
107             <version>2.5</version>
108         </dependency>
109         
110                 <dependency>
111                         <groupId>org.apache.httpcomponents</groupId>
112                         <artifactId>httpclient</artifactId>
113                 </dependency>
114                 <dependency>
115                         <groupId>com.google.code.gson</groupId>
116                         <artifactId>gson</artifactId>
117                 </dependency>
118                 <dependency>
119                         <groupId>org.json</groupId>
120                         <artifactId>json</artifactId>
121                 </dependency>
122                 <dependency>
123                         <groupId>io.dropwizard</groupId>
124                         <artifactId>dropwizard-core</artifactId>
125                         <version>0.8.0</version>
126                 </dependency>
127                 
128                 <dependency>
129           <groupId>com.jcraft</groupId>
130           <artifactId>jsch</artifactId>
131           <version>0.1.54</version>
132         </dependency>
133         
134         <dependency>
135           <groupId>commons-net</groupId>
136           <artifactId>commons-net</artifactId>
137           <version>3.6</version>
138         </dependency>
139         <dependency>
140           <groupId>org.zeroturnaround</groupId>
141           <artifactId>zt-zip</artifactId>
142           <version>1.12</version>
143         </dependency>
144         
145         <dependency>
146             <groupId>org.mybatis.spring.boot</groupId>
147             <artifactId>mybatis-spring-boot-starter</artifactId>
148             <version>1.3.1</version>
149         </dependency>
150
151 <dependency>
152     <groupId>ca.juliusdavies</groupId>
153     <artifactId>not-yet-commons-ssl</artifactId>
154     <version>0.3.9</version>
155 </dependency>
156         </dependencies>
157     <build>
158  <!-- 
159         <pluginManagement>  
160       <plugins>  
161         <plugin>  
162           <groupId>org.jacoco</groupId>  
163           <artifactId>jacoco-maven-plugin</artifactId>  
164           <version>0.7.9</version>
165         </plugin>  
166       </plugins>  
167     </pluginManagement>
168 -->    
169         <plugins>
170             <!-- 
171             <plugin>
172                 <groupId>org.jacoco</groupId>
173                 <artifactId>jacoco-maven-plugin</artifactId>
174                 <configuration>  
175                     <includes>org.onap.vfc.nfvo.driver.vnfm.svnfm.*</includes>  
176                 </configuration>
177                 <executions>
178                     <execution>
179                         <id>default-prepare-agent</id>
180                         <goals>
181                             <goal>prepare-agent</goal>
182                         </goals>
183                     </execution>
184                     <execution>
185                         <id>default-report</id>
186                         <phase>prepare-package</phase>
187                         <goals>
188                             <goal>report</goal>
189                         </goals>
190                     </execution>
191                     <execution>
192                         <id>default-prepare-agent-integration</id>
193                         <goals>
194                             <goal>prepare-agent-integration</goal>
195                         </goals>
196                     </execution>
197                     <execution>
198                         <id>default-check</id>
199                         <goals>
200                             <goal>check</goal>
201                         </goals>
202                     </execution>
203                     <execution>
204                         <id>default-report-integration</id>
205                         <goals>
206                             <goal>report-integration</goal>
207                         </goals>
208                     </execution>
209                 </executions>
210             </plugin>
211              -->
212             <plugin>
213                 <groupId>org.springframework.boot</groupId>
214                 <artifactId>spring-boot-maven-plugin</artifactId>
215                 <version>1.5.7.RELEASE</version>
216             </plugin>
217             <plugin>
218              <groupId>org.apache.maven.plugins</groupId>
219              <artifactId>maven-compiler-plugin</artifactId>
220              <version>3.5</version>
221              <configuration>
222                  <source>1.8</source>
223                  <target>1.8</target>
224              </configuration>
225             </plugin>
226             <plugin>
227                 <groupId>org.apache.maven.plugins</groupId>
228                 <artifactId>maven-surefire-plugin</artifactId>
229             </plugin>
230             <!-- 
231             <plugin>
232                 <groupId>org.apache.maven.plugins</groupId>
233                 <artifactId>maven-failsafe-plugin</artifactId>
234                 <executions>
235                     <execution>
236                     <id>default-integration-test</id>
237                     <goals>
238                         <goal>integration-test</goal>
239                     </goals>
240                     </execution>
241                 </executions>
242             </plugin>
243              -->
244         </plugins>
245     </build>
246  <!--
247     <reporting>
248     <plugins>
249       <plugin>
250         <groupId>org.jacoco</groupId>
251         <artifactId>jacoco-maven-plugin</artifactId>
252         <reportSets>
253           <reportSet>
254             <reports>
255               <report>report</report>
256             </reports>
257           </reportSet>
258         </reportSets>
259       </plugin>
260     </plugins>
261   </reporting>
262  
263   -->
264 </project>