blob: 98150d39e0516098612161a665752a85e6faac1c [file] [log] [blame]
Priyadharshinieb6d3d32020-08-27 04:05:09 -07001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.onap.so</groupId>
7 <artifactId>adapters</artifactId>
8 <version>1.7.1-SNAPSHOT</version>
9 </parent>
10 <groupId>org.onap.so.adapters</groupId>
11 <artifactId>mso-oof-adapter</artifactId>
12 <name>mso-oof-adapter</name>
13 <description>mso oof adapter</description>
14
15 <dependencyManagement>
16 <dependencies>
17 <dependency>
18 <groupId>org.springframework.boot</groupId>
19 <artifactId>spring-boot-dependencies</artifactId>
20 <version>${springboot.version}</version>
21 <type>pom</type>
22 <scope>import</scope>
23 </dependency>
24 </dependencies>
25 </dependencyManagement>
26 <dependencies>
27 <dependency>
28 <groupId>org.springframework.boot</groupId>
29 <artifactId>spring-boot-starter-web</artifactId>
30 </dependency>
31 <dependency>
32 <groupId>org.springframework.boot</groupId>
33 <artifactId>spring-boot-starter-webflux</artifactId>
34 </dependency>
35
36 <dependency>
37 <groupId>org.apache.cxf</groupId>
38 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
39 <version>${cxf.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.apache.cxf</groupId>
43 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
44 <version>${cxf.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.springframework.boot</groupId>
48 <artifactId>spring-boot-starter-test</artifactId>
49 <scope>test</scope>
50 <exclusions>
51 <exclusion>
52 <groupId>org.junit.vintage</groupId>
53 <artifactId>junit-vintage-engine</artifactId>
54 </exclusion>
55 </exclusions>
56 </dependency>
57 <dependency>
58 <groupId>org.junit.jupiter</groupId>
59 <artifactId>junit-jupiter-api</artifactId>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>junit</groupId>
64 <artifactId>junit</artifactId>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.junit.jupiter</groupId>
69 <artifactId>junit-jupiter-engine</artifactId>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.junit.vintage</groupId>
74 <artifactId>junit-vintage-engine</artifactId>
75 <scope>test</scope>
76 </dependency>
77 </dependencies>
78 <build>
79 <finalName>${project.artifactId}-${project.version}</finalName>
80 <testSourceDirectory>${project.basedir}/src/test/java</testSourceDirectory>
81 <plugins>
82 <plugin>
83 <groupId>org.springframework.boot</groupId>
84 <artifactId>spring-boot-maven-plugin</artifactId>
85 <configuration>
86 <mainClass>org.onap.so.adapters.oof.MsoOofAdapterApplication</mainClass>
87 </configuration>
88 <executions>
89 <execution>
90 <goals>
91 <goal>repackage</goal>
92 </goals>
93 </execution>
94 </executions>
95 </plugin>
96 <plugin>
97 <groupId>org.jacoco</groupId>
98 <artifactId>jacoco-maven-plugin</artifactId>
99 </plugin>
100 </plugins>
101 <resources>
102 <resource>
103 <directory>src/main/resources</directory>
104 <filtering>true</filtering>
105 <excludes>
106 <exclude>**/*.p12</exclude>
107 <exclude>**/*.jks</exclude>
108 </excludes>
109 </resource>
110 <resource>
111 <directory>src/main/resources</directory>
112 <filtering>false</filtering>
113 <includes>
114 <include>**/*.p12</include>
115 <include>**/*.jks</include>
116 </includes>
117 </resource>
118 </resources>
119 </build>
120</project>