blob: 934111aa520e99a9c3c54087171ae9476d4085d6 [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 Timoney3ee092a2021-04-19 17:09:25 -040032 <version>2.1.3</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 Timoney3ee092a2021-04-19 17:09:25 -040038 <version>1.1.5-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>
63
64 <!-- end for testing -->
65 <dependency>
66 <groupId>${project.groupId}</groupId>
67 <artifactId>sdnr-wt-devicemanager-oran-model</artifactId>
68 <version>${project.version}</version>
Ravi Pendurty80161602020-11-27 13:28:35 +010069 <scope>provided</scope>
Ravi Pendurty020c2052020-10-16 09:31:37 +020070 </dependency>
71 <dependency>
Ravi Pendurty80161602020-11-27 13:28:35 +010072 <groupId>${project.groupId}</groupId>
Ravi Pendurty020c2052020-10-16 09:31:37 +020073 <artifactId>sdnr-wt-devicemanager-model</artifactId>
74 <version>${project.version}</version>
75 <scope>provided</scope>
76 </dependency>
77 <dependency>
78 <groupId>${project.groupId}</groupId>
79 <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
80 <version>${project.version}</version>
81 <scope>provided</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.opendaylight.netconf</groupId>
85 <artifactId>sal-netconf-connector</artifactId>
86 <scope>provided</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.opendaylight.mdsal</groupId>
90 <artifactId>mdsal-singleton-common-api</artifactId>
91 <scope>provided</scope>
92 </dependency>
Ravi Pendurty80161602020-11-27 13:28:35 +010093 <dependency>
94 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
95 <artifactId>rfc7317-ietf-system</artifactId>
96 <version>${project.version}</version>
97 </dependency>
98 <dependency>
99 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
100 <artifactId>onap-system</artifactId>
101 <version>${project.version}</version>
102 </dependency>
Ravi Pendurty020c2052020-10-16 09:31:37 +0200103 </dependencies>
104
105 <build>
106 <resources>
107 <resource>
108 <directory>src/main/resources</directory>
109 <filtering>true</filtering>
110 </resource>
111 </resources>
112 <plugins>
113 <plugin>
114 <groupId>org.jacoco</groupId>
115 <artifactId>jacoco-maven-plugin</artifactId>
116 <configuration>
117 <excludes>
118 <exclude>**/gen/**</exclude>
119 <exclude>**/generated-sources/**</exclude>
120 <exclude>**/yang-gen-sal/**</exclude>
121 <exclude>**/pax/**</exclude>
122 </excludes>
123 </configuration>
124 </plugin>
125 </plugins>
126 </build>
127</project>