Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
RehanRaza | 553523f | 2019-11-12 13:39:40 +0100 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Modifications Copyright (C) 2019 Nordix Foundation. |
| 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
RehanRaza | 49a8fd4 | 2019-11-11 18:02:32 +0100 | [diff] [blame] | 24 | <repositories> |
| 25 | <repository> |
| 26 | <id>onap-releases</id> |
| 27 | <name>onap-releases</name> |
| 28 | <url>https://nexus.onap.org/content/repositories/releases/</url> |
| 29 | </repository> |
| 30 | </repositories> |
| 31 | |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 32 | <parent> |
| 33 | <groupId>org.onap.ccsdk.parent</groupId> |
| 34 | <artifactId>odlparent-lite</artifactId> |
RehanRaza | 9d400d1 | 2020-05-06 12:23:27 +0200 | [diff] [blame] | 35 | <version>1.5.1</version> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 36 | <relativePath/> |
| 37 | </parent> |
| 38 | |
RehanRaza | 348cb85 | 2020-04-27 16:20:26 +0200 | [diff] [blame] | 39 | <groupId>org.o-ran-sc.nonrtric.sdnc-a1.northbound</groupId> |
| 40 | <artifactId>sdnc-a1-northbound</artifactId> |
Lathish | dc3b337 | 2020-05-25 17:56:04 +0100 | [diff] [blame^] | 41 | <version>1.7.5-SNAPSHOT</version> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 42 | <packaging>pom</packaging> |
| 43 | |
RehanRaza | 22d266b | 2020-03-17 14:07:54 +0100 | [diff] [blame] | 44 | <properties> |
| 45 | <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version> |
| 46 | </properties> |
| 47 | |
RehanRaza | 348cb85 | 2020-04-27 16:20:26 +0200 | [diff] [blame] | 48 | <name>sdnc-a1-northbound</name> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 49 | <description>The SDN-C Northbound APIs repo contains code for northbound API adaptors, typically MD-SAL applications</description> |
| 50 | <url>https://wiki.onap.org</url> |
| 51 | <organization> |
| 52 | <name>ONAP</name> |
| 53 | </organization> |
| 54 | |
| 55 | <modules> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 56 | <module>features</module> |
| 57 | <module>nonrt-ric-api</module> |
| 58 | </modules> |
| 59 | |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 60 | <build> |
| 61 | <plugins> |
| 62 | <plugin> |
| 63 | <groupId>org.apache.maven.plugins</groupId> |
| 64 | <artifactId>maven-surefire-plugin</artifactId> |
| 65 | <version>2.17</version> |
| 66 | <configuration> |
| 67 | <skipTests>false</skipTests> |
| 68 | </configuration> |
| 69 | </plugin> |
RehanRaza | 22d266b | 2020-03-17 14:07:54 +0100 | [diff] [blame] | 70 | <!-- support sonar in multi-module project --> |
| 71 | <plugin> |
| 72 | <groupId>org.sonarsource.scanner.maven</groupId> |
| 73 | <artifactId>sonar-maven-plugin</artifactId> |
| 74 | <version>${sonar-maven-plugin.version}</version> |
| 75 | </plugin> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 76 | </plugins> |
| 77 | </build> |
| 78 | |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 79 | </project> |