blob: b6b52ce7c57a5b571019e1f09625b8c625f2fe94 [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>
31 <artifactId>mso-nssmf-adapter</artifactId>
32 <packaging>jar</packaging>
33 <name>mso-nssmf-adapter</name>
34 <description>Web service endpoint for nssmf operations</description>
35 <dependencyManagement>
36 <dependencies>
37 <dependency>
38 <groupId>org.springframework.boot</groupId>
39 <artifactId>spring-boot-dependencies</artifactId>
40 <version>${springboot.version}</version>
41 <type>pom</type>
42 <scope>import</scope>
43 </dependency>
44 </dependencies>
45 </dependencyManagement>
46 <build>
47 <finalName>${project.artifactId}-${project.version}</finalName>
48 <plugins>
49 <plugin>
50 <groupId>org.springframework.boot</groupId>
51 <artifactId>spring-boot-maven-plugin</artifactId>
52 <configuration>
53 <mainClass>org.onap.so.adapters.nssmf.MSONssmfApplication</mainClass>
54 </configuration>
55 <executions>
56 <execution>
57 <goals>
58 <goal>repackage</goal>
59 </goals>
60 </execution>
61 </executions>
62 </plugin>
63 <plugin>
64 <groupId>org.jacoco</groupId>
65 <artifactId>jacoco-maven-plugin</artifactId>
66 </plugin>
67 </plugins>
68 </build>
69 <dependencies>
70 <dependency>
71 <groupId>org.springframework.boot</groupId>
72 <artifactId>spring-boot-starter-actuator</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.springframework.boot</groupId>
76 <artifactId>spring-boot-starter-web</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.springframework.boot</groupId>
80 <artifactId>spring-boot-starter-jdbc</artifactId>
81 <exclusions>
82 <exclusion>
83 <groupId>org.apache.tomcat</groupId>
84 <artifactId>tomcat-jdbc</artifactId>
85 </exclusion>
86 </exclusions>
87 </dependency>
88 <dependency>
89 <groupId>org.apache.cxf</groupId>
90 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
91 <version>${cxf.version}</version>
92 </dependency>
93 <dependency>
94 <groupId>org.apache.cxf</groupId>
95 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
96 <version>${cxf.version}</version>
97 </dependency>
98 <dependency>
99 <groupId>org.apache.cxf</groupId>
100 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
101 <version>${cxf.version}</version>
102 </dependency>
103 <dependency>
104 <groupId>org.springframework.boot</groupId>
105 <artifactId>spring-boot-starter-data-jpa</artifactId>
106 </dependency>
107 <dependency>
108 <groupId>org.springframework.boot</groupId>
109 <artifactId>spring-boot-starter-test</artifactId>
110 <scope>test</scope>
111 </dependency>
112 <dependency>
113 <groupId>org.onap.so</groupId>
114 <artifactId>mso-requests-db</artifactId>
115 <version>${project.version}</version>
116 </dependency>
117 <dependency>
118 <groupId>org.onap.so</groupId>
119 <artifactId>mso-requests-db-repositories</artifactId>
120 <version>${project.version}</version>
121 </dependency>
122 <dependency>
123 <groupId>org.mariadb.jdbc</groupId>
124 <artifactId>mariadb-java-client</artifactId>
125 </dependency>
126 <dependency>
127 <groupId>ch.vorburger.mariaDB4j</groupId>
128 <artifactId>mariaDB4j</artifactId>
129 <version>2.2.3</version>
130 <scope>test</scope>
131 </dependency>
132 <dependency>
133 <groupId>org.springframework.boot</groupId>
134 <artifactId>spring-boot-configuration-processor</artifactId>
135 <optional>true</optional>
136 </dependency>
137 <dependency>
138 <groupId>com.squareup.okhttp3</groupId>
139 <artifactId>okhttp</artifactId>
140 <version>3.14.0</version>
141 <scope>test</scope>
142 </dependency>
143 <dependency>
144 <groupId>org.projectlombok</groupId>
145 <artifactId>lombok</artifactId>
146 <version>1.18.2</version>
147 </dependency>
148 </dependencies>
149</project>