b257adaa966a9ae2dba99772f825f343456b13ac
[so.git] / adapters / mso-nssmf-adapter / pom.xml
1 <!--
2   ~*
3   ~============LICENSE_START=======================================================
4   ~* ONAP - SO
5   ~*================================================================================
6   ~* Copyright (C) 2020 Huawei Technologies Co., Ltd. All rights reserved.
7   ~*================================================================================
8   ~* Licensed under the Apache License, Version 2.0 (the "License");
9   ~* you may not use this file except in compliance with the License.
10   ~* You may obtain a copy of the License at
11   ~*
12   ~*      http://www.apache.org/licenses/LICENSE-2.0
13   ~*
14   ~* Unless required by applicable law or agreed to in writing, software
15   ~* distributed under the License is distributed on an "AS IS" BASIS,
16   ~* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   ~* See the License for the specific language governing permissions and
18   ~* limitations under the License.
19   ~* ============LICENSE_END=========================================================
20   ~*/
21   -->
22
23 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25   <modelVersion>4.0.0</modelVersion>
26   <parent>
27     <groupId>org.onap.so</groupId>
28     <artifactId>adapters</artifactId>
29     <version>1.6.0-SNAPSHOT</version>
30   </parent>
31   <groupId>org.onap.so.adapters</groupId>
32   <artifactId>mso-nssmf-adapter</artifactId>
33   <packaging>jar</packaging>
34   <name>mso-nssmf-adapter</name>
35   <description>Web service endpoint for nssmf operations</description>
36   <dependencyManagement>
37     <dependencies>
38       <dependency>
39         <groupId>org.springframework.boot</groupId>
40         <artifactId>spring-boot-dependencies</artifactId>
41         <version>${springboot.version}</version>
42         <type>pom</type>
43         <scope>import</scope>
44       </dependency>
45     </dependencies>
46   </dependencyManagement>
47   <build>
48     <finalName>${project.artifactId}-${project.version}</finalName>
49     <plugins>
50       <plugin>
51         <groupId>org.springframework.boot</groupId>
52         <artifactId>spring-boot-maven-plugin</artifactId>
53         <configuration>
54           <mainClass>org.onap.so.adapters.nssmf.MSONssmfApplication</mainClass>
55         </configuration>
56         <executions>
57           <execution>
58             <goals>
59               <goal>repackage</goal>
60             </goals>
61           </execution>
62         </executions>
63       </plugin>
64       <plugin>
65         <groupId>org.jacoco</groupId>
66         <artifactId>jacoco-maven-plugin</artifactId>
67       </plugin>
68     </plugins>
69     <resources>
70       <resource>
71         <directory>src/main/resources</directory>
72         <filtering>true</filtering>
73         <excludes>
74           <exclude>**/*.p12</exclude>
75           <exclude>**/*.jks</exclude>
76         </excludes>
77       </resource>
78       <resource>
79         <directory>src/main/resources</directory>
80         <filtering>false</filtering>
81         <includes>
82           <include>**/*.p12</include>
83           <include>**/*.jks</include>
84         </includes>
85       </resource>
86     </resources>
87   </build>
88   <dependencies>
89     <dependency>
90       <groupId>org.springframework.boot</groupId>
91       <artifactId>spring-boot-starter-actuator</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.springframework.boot</groupId>
95       <artifactId>spring-boot-starter-web</artifactId>
96     </dependency>
97     <dependency>
98       <groupId>org.springframework.boot</groupId>
99       <artifactId>spring-boot-starter-jdbc</artifactId>
100       <exclusions>
101         <exclusion>
102           <groupId>org.apache.tomcat</groupId>
103           <artifactId>tomcat-jdbc</artifactId>
104         </exclusion>
105       </exclusions>
106     </dependency>
107     <dependency>
108       <groupId>org.apache.cxf</groupId>
109       <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
110       <version>${cxf.version}</version>
111     </dependency>
112     <dependency>
113       <groupId>org.apache.cxf</groupId>
114       <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
115       <version>${cxf.version}</version>
116     </dependency>
117     <dependency>
118       <groupId>org.apache.cxf</groupId>
119       <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
120       <version>${cxf.version}</version>
121     </dependency>
122     <dependency>
123       <groupId>org.springframework.boot</groupId>
124       <artifactId>spring-boot-starter-data-jpa</artifactId>
125     </dependency>
126     <dependency>
127       <groupId>org.springframework.boot</groupId>
128       <artifactId>spring-boot-starter-test</artifactId>
129       <scope>test</scope>
130     </dependency>
131     <dependency>
132       <groupId>org.onap.so</groupId>
133       <artifactId>mso-requests-db</artifactId>
134       <version>${project.version}</version>
135     </dependency>
136     <dependency>
137       <groupId>org.onap.so</groupId>
138       <artifactId>mso-requests-db-repositories</artifactId>
139       <version>${project.version}</version>
140     </dependency>
141     <dependency>
142       <groupId>org.mariadb.jdbc</groupId>
143       <artifactId>mariadb-java-client</artifactId>
144     </dependency>
145     <dependency>
146       <groupId>ch.vorburger.mariaDB4j</groupId>
147       <artifactId>mariaDB4j</artifactId>
148       <version>2.2.3</version>
149       <scope>test</scope>
150     </dependency>
151     <dependency>
152       <groupId>org.springframework.boot</groupId>
153       <artifactId>spring-boot-configuration-processor</artifactId>
154       <optional>true</optional>
155     </dependency>
156     <dependency>
157       <groupId>com.squareup.okhttp3</groupId>
158       <artifactId>okhttp</artifactId>
159       <version>3.14.0</version>
160       <scope>test</scope>
161     </dependency>
162     <dependency>
163       <groupId>org.projectlombok</groupId>
164       <artifactId>lombok</artifactId>
165       <version>1.18.2</version>
166     </dependency>
167   </dependencies>
168 </project>