jananib | 782b6d2 | 2020-02-27 14:40:03 +0530 | [diff] [blame] | 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> |
seshukm | 1c8d020 | 2021-02-15 20:35:29 +0530 | [diff] [blame^] | 29 | <version>1.8.0-SNAPSHOT</version> |
jananib | 782b6d2 | 2020-02-27 14:40:03 +0530 | [diff] [blame] | 30 | </parent> |
zm330 | 2fe0c87 | 2020-03-09 16:46:06 +0800 | [diff] [blame] | 31 | <groupId>org.onap.so.adapters</groupId> |
jananib | 782b6d2 | 2020-02-27 14:40:03 +0530 | [diff] [blame] | 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> |
jananib | f2b1404 | 2020-04-07 11:19:20 +0530 | [diff] [blame] | 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> |
jananib | 782b6d2 | 2020-02-27 14:40:03 +0530 | [diff] [blame] | 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> |
jananib | 782b6d2 | 2020-02-27 14:40:03 +0530 | [diff] [blame] | 110 | </dependency> |
| 111 | <dependency> |
| 112 | <groupId>org.apache.cxf</groupId> |
| 113 | <artifactId>cxf-spring-boot-starter-jaxrs</artifactId> |
jananib | 782b6d2 | 2020-02-27 14:40:03 +0530 | [diff] [blame] | 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.apache.cxf</groupId> |
| 117 | <artifactId>cxf-rt-rs-service-description-swagger</artifactId> |
jananib | 782b6d2 | 2020-02-27 14:40:03 +0530 | [diff] [blame] | 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>org.springframework.boot</groupId> |
| 121 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 122 | </dependency> |
| 123 | <dependency> |
| 124 | <groupId>org.springframework.boot</groupId> |
| 125 | <artifactId>spring-boot-starter-test</artifactId> |
| 126 | <scope>test</scope> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>org.onap.so</groupId> |
| 130 | <artifactId>mso-requests-db</artifactId> |
| 131 | <version>${project.version}</version> |
| 132 | </dependency> |
| 133 | <dependency> |
| 134 | <groupId>org.onap.so</groupId> |
| 135 | <artifactId>mso-requests-db-repositories</artifactId> |
| 136 | <version>${project.version}</version> |
| 137 | </dependency> |
| 138 | <dependency> |
| 139 | <groupId>org.mariadb.jdbc</groupId> |
| 140 | <artifactId>mariadb-java-client</artifactId> |
| 141 | </dependency> |
| 142 | <dependency> |
| 143 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 144 | <artifactId>mariaDB4j</artifactId> |
| 145 | <version>2.2.3</version> |
| 146 | <scope>test</scope> |
| 147 | </dependency> |
| 148 | <dependency> |
| 149 | <groupId>org.springframework.boot</groupId> |
| 150 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 151 | <optional>true</optional> |
| 152 | </dependency> |
| 153 | <dependency> |
| 154 | <groupId>com.squareup.okhttp3</groupId> |
| 155 | <artifactId>okhttp</artifactId> |
| 156 | <version>3.14.0</version> |
| 157 | <scope>test</scope> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>org.projectlombok</groupId> |
| 161 | <artifactId>lombok</artifactId> |
jananib | 782b6d2 | 2020-02-27 14:40:03 +0530 | [diff] [blame] | 162 | </dependency> |
| 163 | </dependencies> |
| 164 | </project> |