Modify database part in the deployment
[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.0.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.0.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         </properties>
38
39         <dependencies>
40                 <dependency>
41                         <groupId>org.springframework.boot</groupId>
42                         <artifactId>spring-boot-starter-data-jpa</artifactId>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.springframework.boot</groupId>
46                         <artifactId>spring-boot-starter-web</artifactId>
47                 </dependency>
48                 <dependency>
49             <groupId>org.springframework.boot</groupId>
50             <artifactId>spring-boot-starter</artifactId>
51             <!-- 
52             <exclusions>
53                 <exclusion>
54                     <groupId>org.springframework.boot</groupId>
55                     <artifactId>spring-boot-starter-logging</artifactId>
56                 </exclusion>
57             </exclusions>
58              -->
59         </dependency>
60         <dependency>
61             <groupId>org.springframework.boot</groupId>
62             <artifactId>spring-boot-starter-logging</artifactId>
63         </dependency>
64
65                 <dependency>
66                         <groupId>mysql</groupId>
67                         <artifactId>mysql-connector-java</artifactId>
68                 </dependency>
69                 <dependency>
70                         <groupId>org.springframework.boot</groupId>
71                         <artifactId>spring-boot-starter-tomcat</artifactId>
72                         <scope>provided</scope>
73                 </dependency>
74                 <dependency>
75             <groupId>org.apache.tomcat.embed</groupId>
76             <artifactId>tomcat-embed-jasper</artifactId>
77             <scope>provided</scope>
78         </dependency>
79                 <dependency>
80                         <groupId>org.springframework.boot</groupId>
81                         <artifactId>spring-boot-starter-test</artifactId>
82                         <scope>test</scope>
83                 </dependency>
84                 
85                 
86            <dependency>
87             <groupId>org.apache.httpcomponents</groupId>
88             <artifactId>httpclient</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>com.google.code.gson</groupId>
92             <artifactId>gson</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.json</groupId>
96             <artifactId>json</artifactId>
97         </dependency>
98        
99         <dependency>
100             <groupId>org.onap.msb.java-sdk</groupId>
101             <artifactId>msb-java-sdk</artifactId>
102             <version>1.0.0-SNAPSHOT</version>
103        </dependency>
104        <dependency>
105              <groupId>io.dropwizard</groupId>
106              <artifactId>dropwizard-core</artifactId>
107              <version>0.8.0</version>
108        </dependency>
109         </dependencies>
110     <build>
111         <plugins>
112             <plugin>
113                 <groupId>org.springframework.boot</groupId>
114                 <artifactId>spring-boot-maven-plugin</artifactId>
115                 <version>1.5.7.RELEASE</version>
116             </plugin>
117             <plugin>
118              <groupId>org.apache.maven.plugins</groupId>
119              <artifactId>maven-compiler-plugin</artifactId>
120              <version>3.5</version>
121              <configuration>
122                  <source>1.8</source>
123                  <target>1.8</target>
124              </configuration>
125             </plugin>
126         </plugins>
127     </build>
128 </project>