fix version to 1.3.1
[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.3.1-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.3.1-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-web</artifactId>
48                 </dependency>
49                 <dependency>
50             <groupId>org.springframework.boot</groupId>
51             <artifactId>spring-boot-starter</artifactId>
52
53         </dependency>
54         <dependency>
55             <groupId>org.springframework.boot</groupId>
56             <artifactId>spring-boot-starter-logging</artifactId>
57         </dependency>
58                 
59  
60      <dependency>
61         <groupId>org.mariadb.jdbc</groupId>
62         <artifactId>mariadb-java-client</artifactId>
63         <version>2.2.2</version>
64      </dependency>
65                  <dependency>
66                           <groupId>org.springframework.boot</groupId>
67                           <artifactId>spring-boot-starter-test</artifactId>
68                           <scope>test</scope>
69                 </dependency>
70
71     <dependency>
72             <groupId>commons-io</groupId>
73             <artifactId>commons-io</artifactId>
74             <version>2.6</version>
75     </dependency>
76         
77                 <dependency>
78                         <groupId>org.apache.httpcomponents</groupId>
79                         <artifactId>httpclient</artifactId>
80                         <version>4.5.5</version>
81                 </dependency>
82
83                 <dependency>
84                         <groupId>com.google.code.gson</groupId>
85                         <artifactId>gson</artifactId>
86                         <version>2.8.2</version>
87                 </dependency>
88                 <dependency>
89                         <groupId>org.json</groupId>
90                         <artifactId>json</artifactId>
91                         <version>20180130</version>
92                 </dependency>
93                 <dependency>
94                         <groupId>io.dropwizard</groupId>
95                         <artifactId>dropwizard-core</artifactId>
96                         <version>1.3.0</version>
97                 </dependency>
98                 
99                 <dependency>
100           <groupId>com.jcraft</groupId>
101           <artifactId>jsch</artifactId>
102           <version>0.1.54</version>
103         </dependency>
104         
105         <dependency>
106           <groupId>commons-net</groupId>
107           <artifactId>commons-net</artifactId>
108           <version>3.6</version>
109         </dependency>
110         <dependency>
111           <groupId>org.zeroturnaround</groupId>
112           <artifactId>zt-zip</artifactId>
113           <version>1.12</version>
114         </dependency>
115         
116         <dependency>
117             <groupId>org.mybatis.spring.boot</groupId>
118             <artifactId>mybatis-spring-boot-starter</artifactId>
119             <version>1.3.2</version>
120         </dependency>
121         
122         <dependency>
123           <groupId>com.alibaba</groupId>
124           <artifactId>dubbo</artifactId>
125           <version>2.6.1</version>
126         </dependency>
127
128         </dependencies>
129     <build>
130   
131         <plugins>
132
133             <plugin>
134                 <groupId>org.springframework.boot</groupId>
135                 <artifactId>spring-boot-maven-plugin</artifactId>
136                 <version>2.0.0.RELEASE</version>
137             </plugin>
138             <plugin>
139              <groupId>org.apache.maven.plugins</groupId>
140              <artifactId>maven-compiler-plugin</artifactId>
141              <version>3.7.0</version>
142              <configuration>
143                  <source>1.8</source>
144                  <target>1.8</target>
145              </configuration>
146             </plugin>
147             <plugin>
148                 <groupId>org.apache.maven.plugins</groupId>
149                 <artifactId>maven-surefire-plugin</artifactId>
150                 <version>2.21.0</version>
151             </plugin>
152         </plugins>
153     </build>
154
155 </project>