sparate beans and repositories
[so.git] / adapters / mso-vfc-adapter / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <parent>
5                 <groupId>org.onap.so</groupId>
6                 <artifactId>adapters</artifactId>
7                 <version>1.3.0-SNAPSHOT</version>
8         </parent>
9         <groupId>org.onap.so.adapters</groupId>
10         <artifactId>mso-vfc-adapter</artifactId>
11         <name>mso-vfc-adapter</name>
12         <description>Web service endpoint for vfc operations</description>
13         <dependencyManagement>
14                 <dependencies>
15                         <dependency>
16                                 <groupId>org.springframework.boot</groupId>
17                                 <artifactId>spring-boot-dependencies</artifactId>
18                                 <version>${springboot.version}</version>
19                                 <type>pom</type>
20                                 <scope>import</scope>
21                         </dependency>
22                 </dependencies>
23         </dependencyManagement>
24         <build>
25                 <finalName>${project.artifactId}-${project.version}</finalName>
26                 <plugins>
27                         <plugin>
28                                 <groupId>org.springframework.boot</groupId>
29                                 <artifactId>spring-boot-maven-plugin</artifactId>
30                                 <configuration>
31                                         <mainClass>org.onap.so.adapters.vfc.MSOVfcApplication</mainClass>
32                                 </configuration>
33                                 <executions>
34                                         <execution>
35                                                 <goals>
36                                                         <goal>repackage</goal>
37                                                 </goals>
38                                         </execution>
39                                 </executions>
40                         </plugin>
41                         <plugin>
42                                 <groupId>org.jacoco</groupId>
43                                 <artifactId>jacoco-maven-plugin</artifactId>
44                         </plugin>
45                 </plugins>
46         </build>
47         <dependencies>
48                 <dependency>
49                         <groupId>org.springframework.boot</groupId>
50                         <artifactId>spring-boot-starter-actuator</artifactId>
51                 </dependency>
52                 <dependency>
53                         <groupId>org.springframework.boot</groupId>
54                         <artifactId>spring-boot-starter-web</artifactId>
55                 </dependency>
56                 <dependency>
57                         <groupId>org.springframework.boot</groupId>
58                         <artifactId>spring-boot-starter-jdbc</artifactId>
59                         <exclusions>
60                                 <exclusion>
61                                         <groupId>org.apache.tomcat</groupId>
62                                         <artifactId>tomcat-jdbc</artifactId>
63                                 </exclusion>
64                         </exclusions>
65                 </dependency>
66                 <dependency>
67                         <groupId>org.apache.commons</groupId>
68                         <artifactId>commons-dbcp2</artifactId>
69                 </dependency>
70                 <dependency>
71                         <groupId>org.apache.cxf</groupId>
72                         <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
73                         <version>${cxf.version}</version>
74                 </dependency>
75                 <dependency>
76                         <groupId>org.apache.cxf</groupId>
77                         <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
78                         <version>${cxf.version}</version>
79                 </dependency>
80                 <dependency>
81                         <groupId>org.apache.cxf</groupId>
82                         <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
83                         <version>${cxf.version}</version>
84                 </dependency>
85                 <dependency>
86                         <groupId>org.springframework.boot</groupId>
87                         <artifactId>spring-boot-starter-data-jpa</artifactId>
88                 </dependency>
89                 <dependency>
90                         <groupId>org.springframework.boot</groupId>
91                         <artifactId>spring-boot-starter-test</artifactId>
92                         <scope>test</scope>
93                 </dependency>
94                 <dependency>
95                         <groupId>org.onap.so</groupId>
96                         <artifactId>mso-requests-db</artifactId>
97                         <version>${project.version}</version>
98                 </dependency>
99                 <dependency>
100                         <groupId>org.onap.so</groupId>
101                         <artifactId>mso-requests-db-repositories</artifactId>
102                         <version>${project.version}</version>
103                 </dependency>
104                 <dependency>
105                         <groupId>org.mariadb.jdbc</groupId>
106                         <artifactId>mariadb-java-client</artifactId>
107                 </dependency>
108                 <dependency>
109                         <groupId>ch.vorburger.mariaDB4j</groupId>
110                         <artifactId>mariaDB4j</artifactId>
111                         <version>2.2.3</version>
112                         <scope>test</scope>
113                 </dependency>
114                 <dependency>
115                         <groupId>org.springframework.boot</groupId>
116                         <artifactId>spring-boot-configuration-processor</artifactId>
117                         <optional>true</optional>
118                 </dependency>
119         </dependencies>
120 </project>