Release nonrtric
[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 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.5.1</version>
38         <relativePath/>
39     </parent>
40
41     <groupId>org.o-ran-sc.nonrtric.sdnc-a1.northbound</groupId>
42     <artifactId>nonrt-ric-api-provider</artifactId>
43     <version>2.0.0</version>
44     <packaging>bundle</packaging>
45
46     <name>sdnc-a1-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.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>
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
83     <dependencies>
84         <dependency>
85             <groupId>org.o-ran-sc.nonrtric.sdnc-a1.northbound</groupId>
86             <artifactId>nonrt-ric-api-model</artifactId>
87             <version>${project.version}</version>
88         </dependency>
89         <dependency>
90             <groupId>org.springframework</groupId>
91             <artifactId>spring-context</artifactId>
92             <scope>provided</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.springframework</groupId>
96             <artifactId>spring-web</artifactId>
97             <scope>provided</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.apache.httpcomponents</groupId>
101             <artifactId>httpclient</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.controller</groupId>
105             <artifactId>sal-binding-api</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.controller</groupId>
109             <artifactId>sal-binding-broker-impl</artifactId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.controller</groupId>
114             <artifactId>sal-binding-broker-impl</artifactId>
115             <type>test-jar</type>
116             <classifier>tests</classifier>
117             <scope>test</scope>
118         </dependency>
119         <dependency>
120             <groupId>junit</groupId>
121             <artifactId>junit</artifactId>
122             <scope>test</scope>
123         </dependency>
124         <dependency>
125             <groupId>org.mockito</groupId>
126             <artifactId>mockito-core</artifactId>
127             <version>1.10.19</version>
128             <scope>test</scope>
129         </dependency>
130         <dependency>
131             <groupId>com.squareup.okhttp3</groupId>
132             <artifactId>mockwebserver</artifactId>
133             <version>3.14.6</version>
134             <scope>test</scope>
135         </dependency>
136     </dependencies>
137 </project>