Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 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> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 5 | <groupId>org.onap.so</groupId> |
Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 6 | <artifactId>adapters</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 7 | <version>1.3.0-SNAPSHOT</version> |
Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 8 | </parent> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 9 | <groupId>org.onap.so.adapters</groupId> |
Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 10 | <artifactId>mso-vfc-adapter</artifactId> |
Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 11 | <name>mso-vfc-adapter</name> |
| 12 | <description>Web service endpoint for vfc operations</description> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 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> |
Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 24 | <build> |
| 25 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 26 | <plugins> |
| 27 | <plugin> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 28 | <groupId>org.springframework.boot</groupId> |
| 29 | <artifactId>spring-boot-maven-plugin</artifactId> |
Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 30 | <configuration> |
Smokowski, Steve (ss835w) | 74fe8ef | 2018-08-03 14:34:07 -0400 | [diff] [blame] | 31 | <mainClass>org.onap.so.adapters.vfc.MSOVfcApplication</mainClass> |
Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 32 | </configuration> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 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> |
Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 44 | </plugin> |
| 45 | </plugins> |
| 46 | </build> |
| 47 | <dependencies> |
Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 48 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 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> |
Smokowski, Steve (ss835w) | 74fe8ef | 2018-08-03 14:34:07 -0400 | [diff] [blame] | 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> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 73 | <version>${cxf.version}</version> |
Smokowski, Steve (ss835w) | 74fe8ef | 2018-08-03 14:34:07 -0400 | [diff] [blame] | 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.apache.cxf</groupId> |
| 77 | <artifactId>cxf-spring-boot-starter-jaxrs</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 78 | <version>${cxf.version}</version> |
Smokowski, Steve (ss835w) | 74fe8ef | 2018-08-03 14:34:07 -0400 | [diff] [blame] | 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.apache.cxf</groupId> |
| 82 | <artifactId>cxf-rt-rs-service-description-swagger</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 83 | <version>${cxf.version}</version> |
Smokowski, Steve (ss835w) | 74fe8ef | 2018-08-03 14:34:07 -0400 | [diff] [blame] | 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>org.springframework.boot</groupId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 87 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 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> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 95 | <groupId>org.onap.so</groupId> |
Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 96 | <artifactId>mso-requests-db</artifactId> |
| 97 | <version>${project.version}</version> |
| 98 | </dependency> |
| 99 | <dependency> |
Benjamin, Max (mb388a) | dfdb5a1 | 2018-09-10 09:28:05 -0400 | [diff] [blame] | 100 | <groupId>org.onap.so</groupId> |
| 101 | <artifactId>mso-requests-db-repositories</artifactId> |
| 102 | <version>${project.version}</version> |
| 103 | </dependency> |
| 104 | <dependency> |
Smokowski, Steve (ss835w) | 74fe8ef | 2018-08-03 14:34:07 -0400 | [diff] [blame] | 105 | <groupId>org.mariadb.jdbc</groupId> |
| 106 | <artifactId>mariadb-java-client</artifactId> |
Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 107 | </dependency> |
| 108 | <dependency> |
Smokowski, Steve (ss835w) | 74fe8ef | 2018-08-03 14:34:07 -0400 | [diff] [blame] | 109 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 110 | <artifactId>mariaDB4j</artifactId> |
| 111 | <version>2.2.3</version> |
| 112 | <scope>test</scope> |
Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 113 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 114 | <dependency> |
Smokowski, Steve (ss835w) | 74fe8ef | 2018-08-03 14:34:07 -0400 | [diff] [blame] | 115 | <groupId>org.springframework.boot</groupId> |
| 116 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 117 | <optional>true</optional> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 118 | </dependency> |
Seshu-Kumar-M | f869608 | 2017-10-11 20:39:35 +0800 | [diff] [blame] | 119 | </dependencies> |
c00149107 | 26b7c9d | 2017-08-31 14:27:38 +0800 | [diff] [blame] | 120 | </project> |