blob: 0928da084ebbaeff6d606f3bafb077adcaeaf2d3 [file] [log] [blame]
sekharhuawei0fbda342020-08-06 15:43:57 +05301<!--
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>
arun chapagain1ad70172020-08-10 20:47:19 +053029 <version>1.7.1-SNAPSHOT</version>
sekharhuawei0fbda342020-08-06 15:43:57 +053030 </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 <version>${cxf.version}</version>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.cxf</groupId>
96 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
97 <version>${cxf.version}</version>
98 </dependency>
99 <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
100 <dependency>
101 <groupId>org.apache.httpcomponents</groupId>
102 <artifactId>httpmime</artifactId>
103 </dependency>
104 <!-- <dependency>
105 <groupId>org.apache.cxf</groupId>
106 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
107 <version>${cxf.version}</version>
108 </dependency> -->
109 <dependency>
110 <groupId>org.springframework.boot</groupId>
111 <artifactId>spring-boot-starter-data-jpa</artifactId>
112 </dependency>
sekharhuawei577c10b2020-08-18 17:50:05 +0530113 <dependency>
sekharhuawei0fbda342020-08-06 15:43:57 +0530114 <groupId>org.springframework.boot</groupId>
115 <artifactId>spring-boot-starter-test</artifactId>
116 <scope>test</scope>
sekharhuawei577c10b2020-08-18 17:50:05 +0530117 </dependency>
sekharhuawei0fbda342020-08-06 15:43:57 +0530118 <!-- <dependency>
119 <groupId>org.onap.so</groupId>
120 <artifactId>mso-requests-db</artifactId>
121 <version>${project.version}</version>
122 </dependency>
123 <dependency>
124 <groupId>org.onap.so</groupId>
125 <artifactId>mso-requests-db-repositories</artifactId>
126 <version>${project.version}</version>
127 </dependency>
128 <dependency>
129 <groupId>org.mariadb.jdbc</groupId>
130 <artifactId>mariadb-java-client</artifactId>
131 </dependency>
132 <dependency>
133 <groupId>ch.vorburger.mariaDB4j</groupId>
134 <artifactId>mariaDB4j</artifactId>
135 <version>2.2.3</version>
136 <scope>test</scope>
137 </dependency>
138 <dependency>
139 <groupId>org.springframework.boot</groupId>
140 <artifactId>spring-boot-configuration-processor</artifactId>
141 <optional>true</optional>
142 </dependency>
143 <dependency>
144 <groupId>com.squareup.okhttp3</groupId>
145 <artifactId>okhttp</artifactId>
146 <version>3.14.0</version>
147 <scope>test</scope>
148 </dependency>
149 <dependency>
150 <groupId>org.projectlombok</groupId>
151 <artifactId>lombok</artifactId>
152 <version>1.18.2</version>
153 </dependency> -->
154 </dependencies>
155</project>