blob: 4d1c61201848d9991c6fa5969f5e40b169117aad [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"
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>
Arthur Martella22e015f2018-02-22 14:24:40 -05005 <groupId>org.onap.so</groupId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +08006 <artifactId>adapters</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04007 <version>1.3.0-SNAPSHOT</version>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +08008 </parent>
Arthur Martella22e015f2018-02-22 14:24:40 -05009 <groupId>org.onap.so.adapters</groupId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080010 <artifactId>mso-vfc-adapter</artifactId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080011 <name>mso-vfc-adapter</name>
12 <description>Web service endpoint for vfc operations</description>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040013 <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>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080024 <build>
25 <finalName>${project.artifactId}-${project.version}</finalName>
26 <plugins>
27 <plugin>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040028 <groupId>org.springframework.boot</groupId>
29 <artifactId>spring-boot-maven-plugin</artifactId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080030 <configuration>
Smokowski, Steve (ss835w)74fe8ef2018-08-03 14:34:07 -040031 <mainClass>org.onap.so.adapters.vfc.MSOVfcApplication</mainClass>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080032 </configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040033 <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>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080044 </plugin>
45 </plugins>
46 </build>
47 <dependencies>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080048 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040049 <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>
Smokowski, Steve (ss835w)74fe8ef2018-08-03 14:34:07 -040058 <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>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -040073 <version>${cxf.version}</version>
Smokowski, Steve (ss835w)74fe8ef2018-08-03 14:34:07 -040074 </dependency>
75 <dependency>
76 <groupId>org.apache.cxf</groupId>
77 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -040078 <version>${cxf.version}</version>
Smokowski, Steve (ss835w)74fe8ef2018-08-03 14:34:07 -040079 </dependency>
80 <dependency>
81 <groupId>org.apache.cxf</groupId>
82 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -040083 <version>${cxf.version}</version>
Smokowski, Steve (ss835w)74fe8ef2018-08-03 14:34:07 -040084 </dependency>
85 <dependency>
86 <groupId>org.springframework.boot</groupId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040087 <artifactId>spring-boot-starter-data-jpa</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040088 </dependency>
89 <dependency>
90 <groupId>org.springframework.boot</groupId>
91 <artifactId>spring-boot-starter-test</artifactId>
92 <scope>test</scope>
93 </dependency>
94 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050095 <groupId>org.onap.so</groupId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080096 <artifactId>mso-requests-db</artifactId>
97 <version>${project.version}</version>
98 </dependency>
99 <dependency>
Benjamin, Max (mb388a)dfdb5a12018-09-10 09:28:05 -0400100 <groupId>org.onap.so</groupId>
101 <artifactId>mso-requests-db-repositories</artifactId>
102 <version>${project.version}</version>
103 </dependency>
104 <dependency>
Smokowski, Steve (ss835w)74fe8ef2018-08-03 14:34:07 -0400105 <groupId>org.mariadb.jdbc</groupId>
106 <artifactId>mariadb-java-client</artifactId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +0800107 </dependency>
108 <dependency>
Smokowski, Steve (ss835w)74fe8ef2018-08-03 14:34:07 -0400109 <groupId>ch.vorburger.mariaDB4j</groupId>
110 <artifactId>mariaDB4j</artifactId>
111 <version>2.2.3</version>
112 <scope>test</scope>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +0800113 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400114 <dependency>
Smokowski, Steve (ss835w)74fe8ef2018-08-03 14:34:07 -0400115 <groupId>org.springframework.boot</groupId>
116 <artifactId>spring-boot-configuration-processor</artifactId>
117 <optional>true</optional>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400118 </dependency>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +0800119 </dependencies>
c0014910726b7c9d2017-08-31 14:27:38 +0800120</project>