blob: bad9c5a81fc6fcd35b7733b6203843acc7979f32 [file] [log] [blame]
jananib782b6d22020-02-27 14:40:03 +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>
29 <version>1.6.0-SNAPSHOT</version>
30 </parent>
seshukm6f09b0a2020-03-06 17:20:36 +053031 <groupId>org.onap.so.adapters</groupId>
jananib782b6d22020-02-27 14:40:03 +053032 <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 </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 <dependency>
100 <groupId>org.apache.cxf</groupId>
101 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
102 <version>${cxf.version}</version>
103 </dependency>
104 <dependency>
105 <groupId>org.springframework.boot</groupId>
106 <artifactId>spring-boot-starter-data-jpa</artifactId>
107 </dependency>
108 <dependency>
109 <groupId>org.springframework.boot</groupId>
110 <artifactId>spring-boot-starter-test</artifactId>
111 <scope>test</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.onap.so</groupId>
115 <artifactId>mso-requests-db</artifactId>
116 <version>${project.version}</version>
117 </dependency>
118 <dependency>
119 <groupId>org.onap.so</groupId>
120 <artifactId>mso-requests-db-repositories</artifactId>
121 <version>${project.version}</version>
122 </dependency>
123 <dependency>
124 <groupId>org.mariadb.jdbc</groupId>
125 <artifactId>mariadb-java-client</artifactId>
126 </dependency>
127 <dependency>
128 <groupId>ch.vorburger.mariaDB4j</groupId>
129 <artifactId>mariaDB4j</artifactId>
130 <version>2.2.3</version>
131 <scope>test</scope>
132 </dependency>
133 <dependency>
134 <groupId>org.springframework.boot</groupId>
135 <artifactId>spring-boot-configuration-processor</artifactId>
136 <optional>true</optional>
137 </dependency>
138 <dependency>
139 <groupId>com.squareup.okhttp3</groupId>
140 <artifactId>okhttp</artifactId>
141 <version>3.14.0</version>
142 <scope>test</scope>
143 </dependency>
144 <dependency>
145 <groupId>org.projectlombok</groupId>
146 <artifactId>lombok</artifactId>
147 <version>1.18.2</version>
148 </dependency>
149 </dependencies>
150</project>