1bf22742352ce87253003c09e6d1203eea5121a7
[nonrtric.git] / sdnc-a1-controller / northbound / nonrt-ric-api / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4    Copyright (C) 2019-2020 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 -->
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
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
34     <parent>
35         <groupId>org.onap.ccsdk.parent</groupId>
36         <artifactId>binding-parent</artifactId>
37         <version>1.4.3</version>
38         <relativePath/>
39     </parent>
40
41     <groupId>org.onap.sdnc.northbound</groupId>
42     <artifactId>nonrt-ric-api-provider</artifactId>
43     <version>1.7.3-SNAPSHOT</version>
44     <packaging>bundle</packaging>
45
46     <name>sdnc-northbound :: nonrt-ric-api :: ${project.artifactId}</name>
47
48     <build>
49         <plugins>
50             <plugin>
51                 <groupId>org.jacoco</groupId>
52                 <artifactId>jacoco-maven-plugin</artifactId>
53                 <version>0.8.2</version>
54             </plugin>
55             <plugin>
56                 <groupId>org.apache.maven.plugins</groupId>
57                 <artifactId>maven-javadoc-plugin</artifactId>
58                 <configuration>
59                     <source>8</source>
60                 </configuration>
61             </plugin>
62         </plugins>
63     </build>
64
65         <dependencyManagement>
66             <dependencies>
67                 <dependency>
68                     <groupId>org.onap.ccsdk.sli.core</groupId>
69                     <artifactId>sli-core-artifacts</artifactId>
70                     <version>${ccsdk.sli.core.version}</version>
71                     <type>pom</type>
72                     <scope>import</scope>
73                 </dependency>
74             </dependencies>
75         </dependencyManagement>
76     <dependencies>
77         <dependency>
78             <groupId>org.onap.sdnc.northbound</groupId>
79             <artifactId>nonrt-ric-api-model</artifactId>
80             <version>${project.version}</version>
81         </dependency>
82         <dependency>
83             <groupId>com.google.code.gson</groupId>
84             <artifactId>gson</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.springframework</groupId>
88             <artifactId>spring-context</artifactId>
89             <scope>provided</scope>
90         </dependency>
91         <dependency>
92             <groupId>org.springframework</groupId>
93             <artifactId>spring-web</artifactId>
94             <scope>provided</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.apache.commons</groupId>
98             <artifactId>commons-lang3</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.onap.ccsdk.sli.core</groupId>
102             <artifactId>sli-common</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.onap.ccsdk.sli.core</groupId>
106             <artifactId>sli-provider</artifactId>
107         </dependency>
108
109         <dependency>
110             <groupId>org.opendaylight.controller</groupId>
111             <artifactId>sal-binding-api</artifactId>
112         </dependency>
113
114         <dependency>
115             <groupId>org.opendaylight.controller</groupId>
116             <artifactId>sal-common-util</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.controller</groupId>
120             <artifactId>sal-test-model</artifactId>
121             <scope>test</scope>
122         </dependency>
123
124
125         <dependency>
126             <groupId>org.opendaylight.controller</groupId>
127             <artifactId>sal-binding-broker-impl</artifactId>
128             <scope>test</scope>
129         </dependency>
130         <dependency>
131             <groupId>org.opendaylight.controller</groupId>
132             <artifactId>sal-binding-broker-impl</artifactId>
133             <type>test-jar</type>
134             <classifier>tests</classifier>
135             <scope>test</scope>
136         </dependency>
137         <dependency>
138             <groupId>junit</groupId>
139             <artifactId>junit</artifactId>
140             <scope>test</scope>
141         </dependency>
142         <dependency>
143             <groupId>org.mockito</groupId>
144             <artifactId>mockito-core</artifactId>
145             <version>1.10.19</version>
146             <scope>test</scope>
147         </dependency>
148         <dependency>
149             <groupId>org.json</groupId>
150             <artifactId>json</artifactId>
151         </dependency>
152     </dependencies>
153 </project>