8cfb2dc58120aba648047a4be67f90104a93f440
[so.git] / adapters / mso-cnf-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.7.1-SNAPSHOT</version>
30   </parent>
31   <groupId>org.onap.so.adapters</groupId>
32   <artifactId>mso-cnf-adapter</artifactId>
33   <packaging>jar</packaging>
34   <name>mso-cnf-adapter</name>
35   <description>Web service endpoint for cnf 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.cnf.MSOCnfApplication</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   </build>
70   <dependencies>
71     <dependency>
72       <groupId>org.springframework.boot</groupId>
73       <artifactId>spring-boot-starter-actuator</artifactId>
74     </dependency>
75     <dependency>
76       <groupId>org.springframework.boot</groupId>
77       <artifactId>spring-boot-starter-web</artifactId>
78     </dependency>
79     <dependency>
80       <groupId>org.springframework.boot</groupId>
81       <artifactId>spring-boot-starter-jdbc</artifactId>
82       <exclusions>
83         <exclusion>
84           <groupId>org.apache.tomcat</groupId>
85           <artifactId>tomcat-jdbc</artifactId>
86         </exclusion>
87       </exclusions>
88     </dependency>
89     <dependency>
90       <groupId>org.apache.cxf</groupId>
91       <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.apache.cxf</groupId>
95       <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
96     </dependency>
97     <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
98     <dependency>
99       <groupId>org.apache.httpcomponents</groupId>
100       <artifactId>httpmime</artifactId>
101     </dependency>
102     <!-- <dependency>
103       <groupId>org.apache.cxf</groupId>
104       <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
105       <version>${cxf.version}</version>
106     </dependency> -->
107     <dependency>
108       <groupId>org.springframework.boot</groupId>
109       <artifactId>spring-boot-starter-data-jpa</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>org.springframework.boot</groupId>
113       <artifactId>spring-boot-starter-test</artifactId>
114       <scope>test</scope>
115     </dependency>
116     <!--  <dependency>
117       <groupId>org.onap.so</groupId>
118       <artifactId>mso-requests-db</artifactId>
119       <version>${project.version}</version>
120     </dependency>
121     <dependency>
122       <groupId>org.onap.so</groupId>
123       <artifactId>mso-requests-db-repositories</artifactId>
124       <version>${project.version}</version>
125     </dependency>
126     <dependency>
127       <groupId>org.mariadb.jdbc</groupId>
128       <artifactId>mariadb-java-client</artifactId>
129     </dependency>
130     <dependency>
131       <groupId>ch.vorburger.mariaDB4j</groupId>
132       <artifactId>mariaDB4j</artifactId>
133       <version>2.2.3</version>
134       <scope>test</scope>
135     </dependency>
136     <dependency>
137       <groupId>org.springframework.boot</groupId>
138       <artifactId>spring-boot-configuration-processor</artifactId>
139       <optional>true</optional>
140     </dependency>
141     <dependency>
142       <groupId>com.squareup.okhttp3</groupId>
143       <artifactId>okhttp</artifactId>
144       <version>3.14.0</version>
145       <scope>test</scope>
146     </dependency>
147     <dependency>
148       <groupId>org.projectlombok</groupId>
149       <artifactId>lombok</artifactId>
150       <version>1.18.2</version>
151     </dependency> -->
152   </dependencies>
153 </project>