Merge "Update NSMF Allocate workflow and fix health check issue"
[so.git] / adapters / mso-sdnc-adapter / pom.xml
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>
5     <groupId>org.onap.so</groupId>
6     <artifactId>adapters</artifactId>
7     <version>1.7.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>mso-sdnc-adapter</artifactId>
10   <properties>
11     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
13   </properties>
14   <name>mso-sdnc-adapter</name>
15   <description>mso sdnc adapter</description>
16
17   <build>
18     <finalName>${project.artifactId}-${project.version}</finalName>
19     <pluginManagement>
20       <plugins>
21         <plugin>
22           <groupId>org.eclipse.m2e</groupId>
23           <artifactId>lifecycle-mapping</artifactId>
24           <version>1.0.0</version>
25           <configuration>
26             <lifecycleMappingMetadata>
27               <pluginExecutions>
28                 <pluginExecution>
29                   <pluginExecutionFilter>
30                     <groupId>org.apache.maven.plugins</groupId>
31                     <artifactId>maven-dependency-plugin</artifactId>
32                     <versionRange>[1.0.0,)</versionRange>
33                     <goals>
34                       <goal>unpack</goal>
35                     </goals>
36                   </pluginExecutionFilter>
37                   <action>
38                     <execute />
39                   </action>
40                 </pluginExecution>
41               </pluginExecutions>
42             </lifecycleMappingMetadata>
43           </configuration>
44         </plugin>
45       </plugins>
46     </pluginManagement>
47     <plugins>
48       <plugin>
49         <groupId>org.apache.cxf</groupId>
50         <artifactId>cxf-codegen-plugin</artifactId>
51         <version>2.5.2</version>
52       </plugin>
53       <plugin>
54         <groupId>org.springframework.boot</groupId>
55         <artifactId>spring-boot-maven-plugin</artifactId>
56         <configuration>
57           <mainClass>org.onap.so.adapters.sdnc.SDNCAdapterApplication</mainClass>
58         </configuration>
59         <executions>
60           <execution>
61             <goals>
62               <goal>repackage</goal>
63             </goals>
64           </execution>
65         </executions>
66       </plugin>
67       <plugin>
68         <groupId>org.apache.maven.plugins</groupId>
69         <artifactId>maven-jar-plugin</artifactId>
70         <executions>
71           <execution>
72             <id>original</id>
73             <phase>package</phase>
74           </execution>
75         </executions>
76       </plugin>
77       <plugin>
78         <groupId>org.jacoco</groupId>
79         <artifactId>jacoco-maven-plugin</artifactId>
80       </plugin>
81       <plugin>
82         <groupId>org.apache.maven.plugins</groupId>
83         <artifactId>maven-dependency-plugin</artifactId>
84         <executions>
85           <execution>
86             <id>extract-docker-file</id>
87             <configuration>
88               <skip>false</skip>
89             </configuration>
90           </execution>
91         </executions>
92       </plugin>
93       <plugin>
94         <groupId>io.fabric8</groupId>
95         <artifactId>docker-maven-plugin</artifactId>
96         <executions>
97           <execution>
98             <id>start</id>
99           </execution>
100         </executions>
101       </plugin>
102       <plugin>
103         <groupId>org.apache.maven.plugins</groupId>
104         <artifactId>maven-surefire-plugin</artifactId>
105         <executions>
106           <execution>
107             <id>default-test</id>
108             <goals>
109               <goal>test</goal>
110             </goals>
111             <configuration>
112               <includes>
113                 <include>**/AllTestsTestSuite.java</include>
114               </includes>
115               <parallel>suites</parallel>
116             </configuration>
117           </execution>
118         </executions>
119       </plugin>
120     </plugins>
121   </build>
122   <dependencyManagement>
123     <dependencies>
124       <dependency>
125         <!-- Import dependency management from Spring Boot -->
126         <groupId>org.springframework.boot</groupId>
127         <artifactId>spring-boot-dependencies</artifactId>
128         <version>${springboot.version}</version>
129         <type>pom</type>
130         <scope>import</scope>
131       </dependency>
132     </dependencies>
133   </dependencyManagement>
134
135   <dependencies>
136     <dependency>
137       <groupId>com.sun.activation</groupId>
138       <artifactId>javax.activation</artifactId>
139       <version>1.2.0</version>
140     </dependency>
141     <dependency>
142       <groupId>javax.xml.bind</groupId>
143       <artifactId>jaxb-api</artifactId>
144       <version>2.3.0</version>
145     </dependency>
146     <dependency>
147       <groupId>com.sun.xml.bind</groupId>
148       <artifactId>jaxb-core</artifactId>
149       <version>2.3.0</version>
150     </dependency>
151     <dependency>
152       <groupId>com.sun.xml.bind</groupId>
153       <artifactId>jaxb-impl</artifactId>
154       <version>2.3.0</version>
155     </dependency>
156     <dependency>
157       <groupId>org.springframework.boot</groupId>
158       <artifactId>spring-boot-starter-web</artifactId>
159     </dependency>
160     <dependency>
161       <groupId>io.swagger</groupId>
162       <artifactId>swagger-jersey2-jaxrs</artifactId>
163       <version>1.5.16</version>
164     </dependency>
165     <dependency>
166       <groupId>org.springframework.boot</groupId>
167       <artifactId>spring-boot-starter-actuator</artifactId>
168     </dependency>
169     <dependency>
170       <groupId>org.springframework.boot</groupId>
171       <artifactId>spring-boot-starter-test</artifactId>
172       <scope>test</scope>
173     </dependency>
174     <dependency>
175       <groupId>org.onap.so.adapters</groupId>
176       <artifactId>mso-adapter-utils</artifactId>
177       <version>${project.version}</version>
178     </dependency>
179     <dependency>
180       <groupId>org.apache.cxf</groupId>
181       <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
182     </dependency>
183     <dependency>
184       <groupId>org.apache.cxf</groupId>
185       <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
186     </dependency>
187     <dependency>
188       <groupId>org.apache.cxf</groupId>
189       <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
190     </dependency>
191     <dependency>
192       <groupId>org.springframework.boot</groupId>
193       <artifactId>spring-boot-configuration-processor</artifactId>
194       <optional>true</optional>
195     </dependency>
196     <dependency>
197       <groupId>org.onap.so.adapters</groupId>
198       <artifactId>mso-adapters-rest-interface</artifactId>
199       <version>${project.version}</version>
200     </dependency>
201     <dependency>
202       <groupId>org.glassfish</groupId>
203       <artifactId>javax.json</artifactId>
204       <version>1.0.4</version>
205       <scope>test</scope>
206     </dependency>
207     <dependency>
208       <groupId>io.micrometer</groupId>
209       <artifactId>micrometer-core</artifactId>
210     </dependency>
211     <dependency>
212       <groupId>io.micrometer</groupId>
213       <artifactId>micrometer-registry-prometheus</artifactId>
214     </dependency>
215     <dependency>
216       <groupId>org.onap.so</groupId>
217       <artifactId>cxf-logging</artifactId>
218       <version>${project.version}</version>
219     </dependency>
220   </dependencies>
221 </project>