blob: d181e1006b6d90a3e897a011f7624af15294396b [file] [log] [blame]
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +08001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04002 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>
seshukmadbd1c42020-08-03 19:23:51 +05307 <version>1.7.1-SNAPSHOT</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04008 </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.cxf</groupId>
68 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040069 </dependency>
70 <dependency>
71 <groupId>org.apache.cxf</groupId>
72 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040073 </dependency>
74 <dependency>
75 <groupId>org.apache.cxf</groupId>
76 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040077 </dependency>
78 <dependency>
79 <groupId>org.springframework.boot</groupId>
80 <artifactId>spring-boot-starter-data-jpa</artifactId>
81 </dependency>
82 <dependency>
83 <groupId>org.springframework.boot</groupId>
84 <artifactId>spring-boot-starter-test</artifactId>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.onap.so</groupId>
89 <artifactId>mso-requests-db</artifactId>
90 <version>${project.version}</version>
91 </dependency>
92 <dependency>
93 <groupId>org.onap.so</groupId>
94 <artifactId>mso-requests-db-repositories</artifactId>
95 <version>${project.version}</version>
96 </dependency>
97 <dependency>
98 <groupId>org.mariadb.jdbc</groupId>
99 <artifactId>mariadb-java-client</artifactId>
100 </dependency>
101 <dependency>
102 <groupId>ch.vorburger.mariaDB4j</groupId>
103 <artifactId>mariaDB4j</artifactId>
104 <version>2.2.3</version>
105 <scope>test</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.springframework.boot</groupId>
109 <artifactId>spring-boot-configuration-processor</artifactId>
110 <optional>true</optional>
111 </dependency>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -0500112 <dependency>
113 <groupId>org.springframework.boot</groupId>
114 <artifactId>spring-boot-starter-validation</artifactId>
115 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400116 </dependencies>
c0014910726b7c9d2017-08-31 14:27:38 +0800117</project>