Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
RehanRaza | 553523f | 2019-11-12 13:39:40 +0100 | [diff] [blame] | 4 | Copyright (C) 2019 Nordix Foundation. |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 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 | --> |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 22 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
RehanRaza | 49a8fd4 | 2019-11-11 18:02:32 +0100 | [diff] [blame] | 26 | <repositories> |
| 27 | <repository> |
| 28 | <id>onap-releases</id> |
| 29 | <name>onap-releases</name> |
| 30 | <url>https://nexus.onap.org/content/repositories/releases/</url> |
| 31 | </repository> |
| 32 | </repositories> |
| 33 | |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 34 | <parent> |
| 35 | <groupId>org.onap.ccsdk.parent</groupId> |
| 36 | <artifactId>binding-parent</artifactId> |
RehanRaza | 9d400d1 | 2020-05-06 12:23:27 +0200 | [diff] [blame] | 37 | <version>1.5.1</version> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 38 | <relativePath/> |
| 39 | </parent> |
| 40 | |
RehanRaza | 348cb85 | 2020-04-27 16:20:26 +0200 | [diff] [blame] | 41 | <groupId>org.o-ran-sc.nonrtric.sdnc-a1.northbound</groupId> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 42 | <artifactId>nonrt-ric-api-provider</artifactId> |
| 43 | <version>1.7.3-SNAPSHOT</version> |
| 44 | <packaging>bundle</packaging> |
| 45 | |
RehanRaza | 348cb85 | 2020-04-27 16:20:26 +0200 | [diff] [blame] | 46 | <name>sdnc-a1-northbound :: nonrt-ric-api :: ${project.artifactId}</name> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 47 | |
RehanRaza | 49a8fd4 | 2019-11-11 18:02:32 +0100 | [diff] [blame] | 48 | <build> |
| 49 | <plugins> |
| 50 | <plugin> |
| 51 | <groupId>org.jacoco</groupId> |
| 52 | <artifactId>jacoco-maven-plugin</artifactId> |
RehanRaza | 22d266b | 2020-03-17 14:07:54 +0100 | [diff] [blame] | 53 | <version>0.8.4</version> |
| 54 | <configuration> |
| 55 | <dataFile>${project.build.directory}/code-coverage/jacoco.exec</dataFile> |
| 56 | </configuration> |
| 57 | <executions> |
| 58 | <execution> |
| 59 | <id>default-prepare-agent</id> |
| 60 | <goals> |
| 61 | <goal>prepare-agent</goal> |
| 62 | </goals> |
| 63 | </execution> |
| 64 | <execution> |
| 65 | <id>default-report</id> |
| 66 | <phase>prepare-package</phase> |
| 67 | <goals> |
| 68 | <goal>report</goal> |
| 69 | </goals> |
| 70 | </execution> |
| 71 | </executions> |
RehanRaza | 49a8fd4 | 2019-11-11 18:02:32 +0100 | [diff] [blame] | 72 | </plugin> |
| 73 | <plugin> |
| 74 | <groupId>org.apache.maven.plugins</groupId> |
| 75 | <artifactId>maven-javadoc-plugin</artifactId> |
| 76 | <configuration> |
| 77 | <source>8</source> |
| 78 | </configuration> |
| 79 | </plugin> |
| 80 | </plugins> |
| 81 | </build> |
| 82 | |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 83 | <dependencyManagement> |
| 84 | <dependencies> |
| 85 | <dependency> |
| 86 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 87 | <artifactId>sli-core-artifacts</artifactId> |
| 88 | <version>${ccsdk.sli.core.version}</version> |
| 89 | <type>pom</type> |
| 90 | <scope>import</scope> |
| 91 | </dependency> |
| 92 | </dependencies> |
| 93 | </dependencyManagement> |
| 94 | <dependencies> |
| 95 | <dependency> |
RehanRaza | 348cb85 | 2020-04-27 16:20:26 +0200 | [diff] [blame] | 96 | <groupId>org.o-ran-sc.nonrtric.sdnc-a1.northbound</groupId> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 97 | <artifactId>nonrt-ric-api-model</artifactId> |
| 98 | <version>${project.version}</version> |
| 99 | </dependency> |
| 100 | <dependency> |
RehanRaza | 238fd97 | 2019-11-06 15:30:22 +0100 | [diff] [blame] | 101 | <groupId>com.google.code.gson</groupId> |
| 102 | <artifactId>gson</artifactId> |
| 103 | </dependency> |
| 104 | <dependency> |
RehanRaza | 799dafa | 2019-10-17 08:18:56 +0200 | [diff] [blame] | 105 | <groupId>org.springframework</groupId> |
| 106 | <artifactId>spring-context</artifactId> |
| 107 | <scope>provided</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>org.springframework</groupId> |
| 111 | <artifactId>spring-web</artifactId> |
| 112 | <scope>provided</scope> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>org.apache.commons</groupId> |
| 116 | <artifactId>commons-lang3</artifactId> |
| 117 | </dependency> |
| 118 | <dependency> |
RehanRaza | e01af69 | 2020-04-30 14:04:57 +0200 | [diff] [blame] | 119 | <groupId>org.apache.httpcomponents</groupId> |
| 120 | <artifactId>httpclient</artifactId> |
| 121 | </dependency> |
| 122 | <dependency> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 123 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 124 | <artifactId>sli-common</artifactId> |
| 125 | </dependency> |
| 126 | <dependency> |
| 127 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 128 | <artifactId>sli-provider</artifactId> |
| 129 | </dependency> |
| 130 | |
| 131 | <dependency> |
| 132 | <groupId>org.opendaylight.controller</groupId> |
| 133 | <artifactId>sal-binding-api</artifactId> |
| 134 | </dependency> |
| 135 | |
| 136 | <dependency> |
| 137 | <groupId>org.opendaylight.controller</groupId> |
| 138 | <artifactId>sal-common-util</artifactId> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>org.opendaylight.controller</groupId> |
| 142 | <artifactId>sal-test-model</artifactId> |
| 143 | <scope>test</scope> |
| 144 | </dependency> |
| 145 | |
| 146 | |
| 147 | <dependency> |
| 148 | <groupId>org.opendaylight.controller</groupId> |
| 149 | <artifactId>sal-binding-broker-impl</artifactId> |
| 150 | <scope>test</scope> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>org.opendaylight.controller</groupId> |
| 154 | <artifactId>sal-binding-broker-impl</artifactId> |
| 155 | <type>test-jar</type> |
| 156 | <classifier>tests</classifier> |
| 157 | <scope>test</scope> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>junit</groupId> |
| 161 | <artifactId>junit</artifactId> |
| 162 | <scope>test</scope> |
| 163 | </dependency> |
| 164 | <dependency> |
| 165 | <groupId>org.mockito</groupId> |
| 166 | <artifactId>mockito-core</artifactId> |
| 167 | <version>1.10.19</version> |
| 168 | <scope>test</scope> |
| 169 | </dependency> |
RehanRaza | 799dafa | 2019-10-17 08:18:56 +0200 | [diff] [blame] | 170 | <dependency> |
| 171 | <groupId>org.json</groupId> |
| 172 | <artifactId>json</artifactId> |
| 173 | </dependency> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 174 | </dependencies> |
| 175 | </project> |