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>
5 <groupId>org.onap.so</groupId>
6 <artifactId>adapters</artifactId>
7 <version>1.6.0-SNAPSHOT</version>
9 <artifactId>mso-sdnc-adapter</artifactId>
11 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
14 <name>mso-sdnc-adapter</name>
15 <description>mso sdnc adapter</description>
18 <finalName>${project.artifactId}-${project.version}</finalName>
21 <groupId>org.apache.cxf</groupId>
22 <artifactId>cxf-codegen-plugin</artifactId>
23 <version>2.5.2</version>
26 <groupId>org.springframework.boot</groupId>
27 <artifactId>spring-boot-maven-plugin</artifactId>
29 <mainClass>org.onap.so.adapters.sdnc.SDNCAdapterApplication</mainClass>
34 <goal>repackage</goal>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-jar-plugin</artifactId>
52 <groupId>org.jacoco</groupId>
53 <artifactId>jacoco-maven-plugin</artifactId>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-dependency-plugin</artifactId>
60 <id>extract-docker-file</id>
65 <groupId>io.fabric8</groupId>
66 <artifactId>fabric8-maven-plugin</artifactId>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-surefire-plugin</artifactId>
84 <include>**/AllTestsTestSuite.java</include>
86 <parallel>suites</parallel>
93 <dependencyManagement>
96 <!-- Import dependency management from Spring Boot -->
97 <groupId>org.springframework.boot</groupId>
98 <artifactId>spring-boot-dependencies</artifactId>
99 <version>${springboot.version}</version>
101 <scope>import</scope>
104 </dependencyManagement>
108 <groupId>org.springframework.boot</groupId>
109 <artifactId>spring-boot-starter-web</artifactId>
112 <groupId>io.swagger</groupId>
113 <artifactId>swagger-jersey2-jaxrs</artifactId>
114 <version>1.5.16</version>
117 <groupId>org.springframework.boot</groupId>
118 <artifactId>spring-boot-starter-actuator</artifactId>
121 <groupId>org.springframework.boot</groupId>
122 <artifactId>spring-boot-starter-test</artifactId>
126 <groupId>org.onap.so.adapters</groupId>
127 <artifactId>mso-adapter-utils</artifactId>
128 <version>${project.version}</version>
131 <groupId>org.apache.cxf</groupId>
132 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
133 <version>${cxf.version}</version>
136 <groupId>org.apache.cxf</groupId>
137 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
138 <version>${cxf.version}</version>
141 <groupId>org.apache.cxf</groupId>
142 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
143 <version>${cxf.version}</version>
146 <groupId>org.springframework.boot</groupId>
147 <artifactId>spring-boot-configuration-processor</artifactId>
148 <optional>true</optional>
151 <groupId>org.onap.so.adapters</groupId>
152 <artifactId>mso-adapters-rest-interface</artifactId>
153 <version>${project.version}</version>
156 <groupId>org.glassfish</groupId>
157 <artifactId>javax.json</artifactId>
158 <version>1.0.4</version>
162 <groupId>io.micrometer</groupId>
163 <artifactId>micrometer-core</artifactId>
166 <groupId>io.micrometer</groupId>
167 <artifactId>micrometer-registry-prometheus</artifactId>
170 <groupId>org.onap.so</groupId>
171 <artifactId>cxf-logging</artifactId>
172 <version>${project.version}</version>