blob: c5ce2e6ce6498f918aae62df5430571a0bd632a4 [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 -->
Ravi Pendurty020c2052020-10-16 09:31:37 +020025<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">
26 <modelVersion>4.0.0</modelVersion>
27
28 <parent>
29 <groupId>org.onap.ccsdk.parent</groupId>
30 <artifactId>binding-parent</artifactId>
Dan Timoney24383fb2021-05-04 13:52:45 -040031 <version>2.1.4</version>
Ravi Pendurty020c2052020-10-16 09:31:37 +020032 <relativePath/>
33 </parent>
34
35 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
36 <artifactId>sdnr-wt-devicemanager-oran-provider</artifactId>
Dan Timoney3ee092a2021-04-19 17:09:25 -040037 <version>1.1.5-SNAPSHOT</version>
Ravi Pendurty020c2052020-10-16 09:31:37 +020038 <packaging>bundle</packaging>
39
40 <name>ccsdk-features :: ${project.artifactId}</name>
41 <licenses>
42 <license>
43 <name>Apache License, Version 2.0</name>
44 <url>http://www.apache.org/licenses/LICENSE-2.0</url>
45 </license>
46 </licenses>
47
48 <properties>
Ravi Pendurty020c2052020-10-16 09:31:37 +020049 <maven.javadoc.skip>true</maven.javadoc.skip>
50 <maven.build.timestamp.format>yyyy-MM-dd HH:mm</maven.build.timestamp.format>
51 <buildtime>${maven.build.timestamp} UTC</buildtime>
52 <databaseport>49400</databaseport>
53 </properties>
54
55 <dependencies>
56 <!-- begin for testing -->
57 <dependency>
58 <groupId>org.mockito</groupId>
59 <artifactId>mockito-core</artifactId>
60 <scope>test</scope>
61 </dependency>
62
63 <!-- end for testing -->
64 <dependency>
65 <groupId>${project.groupId}</groupId>
66 <artifactId>sdnr-wt-devicemanager-oran-model</artifactId>
67 <version>${project.version}</version>
Ravi Pendurty80161602020-11-27 13:28:35 +010068 <scope>provided</scope>
Ravi Pendurty020c2052020-10-16 09:31:37 +020069 </dependency>
70 <dependency>
Ravi Pendurty80161602020-11-27 13:28:35 +010071 <groupId>${project.groupId}</groupId>
Ravi Pendurty020c2052020-10-16 09:31:37 +020072 <artifactId>sdnr-wt-devicemanager-model</artifactId>
73 <version>${project.version}</version>
74 <scope>provided</scope>
75 </dependency>
76 <dependency>
77 <groupId>${project.groupId}</groupId>
78 <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
79 <version>${project.version}</version>
80 <scope>provided</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.opendaylight.netconf</groupId>
84 <artifactId>sal-netconf-connector</artifactId>
85 <scope>provided</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.opendaylight.mdsal</groupId>
89 <artifactId>mdsal-singleton-common-api</artifactId>
90 <scope>provided</scope>
91 </dependency>
Ravi Pendurty80161602020-11-27 13:28:35 +010092 <dependency>
93 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
94 <artifactId>rfc7317-ietf-system</artifactId>
95 <version>${project.version}</version>
96 </dependency>
97 <dependency>
98 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
99 <artifactId>onap-system</artifactId>
100 <version>${project.version}</version>
101 </dependency>
Ravi Pendurty020c2052020-10-16 09:31:37 +0200102 </dependencies>
103
104 <build>
105 <resources>
106 <resource>
107 <directory>src/main/resources</directory>
108 <filtering>true</filtering>
109 </resource>
110 </resources>
111 <plugins>
112 <plugin>
113 <groupId>org.jacoco</groupId>
114 <artifactId>jacoco-maven-plugin</artifactId>
115 <configuration>
116 <excludes>
117 <exclude>**/gen/**</exclude>
118 <exclude>**/generated-sources/**</exclude>
119 <exclude>**/yang-gen-sal/**</exclude>
120 <exclude>**/pax/**</exclude>
121 </excludes>
122 </configuration>
123 </plugin>
124 </plugins>
125 </build>
126</project>