blob: 3b8583dad17547f722ca9f8d53dae54b48f8ad55 [file] [log] [blame]
Ravi Pendurty020c2052020-10-16 09:31:37 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
7 ~ All rights reserved.
8 ~ ================================================================================
9 ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
10 ~ ================================================================================
11 ~ Licensed under the Apache License, Version 2.0 (the "License");
12 ~ you may not use this file except in compliance with the License.
13 ~ You may obtain a copy of the License at
14 ~
15 ~ http://www.apache.org/licenses/LICENSE-2.0
16 ~
17 ~ Unless required by applicable law or agreed to in writing, software
18 ~ distributed under the License is distributed on an "AS IS" BASIS,
19 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 ~ See the License for the specific language governing permissions and
21 ~ limitations under the License.
22 ~ ============LICENSE_END=======================================================
23 ~
24 -->
25
26<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">
27 <modelVersion>4.0.0</modelVersion>
28
29 <parent>
30 <groupId>org.onap.ccsdk.parent</groupId>
31 <artifactId>binding-parent</artifactId>
Dan Timoneyaf9977a2021-03-09 11:39:34 -050032 <version>2.2.0-SNAPSHOT</version>
Ravi Pendurty020c2052020-10-16 09:31:37 +020033 <relativePath/>
34 </parent>
35
36 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
37 <artifactId>sdnr-wt-devicemanager-oran-provider</artifactId>
Dan Timoneyaf9977a2021-03-09 11:39:34 -050038 <version>1.2.0-SNAPSHOT</version>
Ravi Pendurty020c2052020-10-16 09:31:37 +020039 <packaging>bundle</packaging>
40
41 <name>ccsdk-features :: ${project.artifactId}</name>
42 <licenses>
43 <license>
44 <name>Apache License, Version 2.0</name>
45 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
46 </license>
47 </licenses>
48
49 <properties>
Ravi Pendurty020c2052020-10-16 09:31:37 +020050 <maven.javadoc.skip>true</maven.javadoc.skip>
51 <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
52 <buildtime>${maven.build.timestamp} UTC</buildtime>
53 <databaseport>49400</databaseport>
54 </properties>
55
56 <dependencies>
57 <!-- begin for testing -->
58 <dependency>
59 <groupId>org.mockito</groupId>
60 <artifactId>mockito-core</artifactId>
61 <scope>test</scope>
62 </dependency>
Ravi Pendurty9fb39532021-03-29 09:04:05 +020063 <dependency>
64 <groupId>org.json</groupId>
65 <artifactId>json</artifactId>
66 <scope>test</scope>
67 </dependency>
Ravi Pendurty020c2052020-10-16 09:31:37 +020068
69 <!-- end for testing -->
70 <dependency>
71 <groupId>${project.groupId}</groupId>
72 <artifactId>sdnr-wt-devicemanager-oran-model</artifactId>
73 <version>${project.version}</version>
Ravi Pendurty80161602020-11-27 13:28:35 +010074 <scope>provided</scope>
Ravi Pendurty020c2052020-10-16 09:31:37 +020075 </dependency>
76 <dependency>
Ravi Pendurty80161602020-11-27 13:28:35 +010077 <groupId>${project.groupId}</groupId>
Ravi Pendurty020c2052020-10-16 09:31:37 +020078 <artifactId>sdnr-wt-devicemanager-model</artifactId>
79 <version>${project.version}</version>
80 <scope>provided</scope>
81 </dependency>
82 <dependency>
83 <groupId>${project.groupId}</groupId>
84 <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
85 <version>${project.version}</version>
86 <scope>provided</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.opendaylight.netconf</groupId>
90 <artifactId>sal-netconf-connector</artifactId>
91 <scope>provided</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.opendaylight.mdsal</groupId>
95 <artifactId>mdsal-singleton-common-api</artifactId>
96 <scope>provided</scope>
97 </dependency>
Ravi Pendurty80161602020-11-27 13:28:35 +010098 <dependency>
99 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
100 <artifactId>rfc7317-ietf-system</artifactId>
101 <version>${project.version}</version>
102 </dependency>
103 <dependency>
104 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
105 <artifactId>onap-system</artifactId>
106 <version>${project.version}</version>
107 </dependency>
Ravi Pendurty020c2052020-10-16 09:31:37 +0200108 </dependencies>
109
110 <build>
111 <resources>
112 <resource>
113 <directory>src/main/resources</directory>
114 <filtering>true</filtering>
115 </resource>
116 </resources>
117 <plugins>
118 <plugin>
119 <groupId>org.jacoco</groupId>
120 <artifactId>jacoco-maven-plugin</artifactId>
121 <configuration>
122 <excludes>
123 <exclude>**/gen/**</exclude>
124 <exclude>**/generated-sources/**</exclude>
125 <exclude>**/yang-gen-sal/**</exclude>
126 <exclude>**/pax/**</exclude>
127 </excludes>
128 </configuration>
129 </plugin>
130 </plugins>
131 </build>
132</project>