blob: 894c8f6122e366e9e19c506dd2c2a3895cba7646 [file] [log] [blame]
herbertcbbc3522020-01-30 10:39:37 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -05003 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Copyright (C) 2018 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 -->
Timoney, Dan (dt5972)9b0742c2022-10-24 12:46:51 -040025
herbertcbbc3522020-01-30 10:39:37 +010026<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">
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050027 <modelVersion>4.0.0</modelVersion>
herbertcbbc3522020-01-30 10:39:37 +010028
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050029 <parent>
30 <groupId>org.onap.ccsdk.parent</groupId>
31 <artifactId>binding-parent</artifactId>
Timoney, Dan (dt5972)9b0742c2022-10-24 12:46:51 -040032 <version>2.4.4</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050033 <relativePath/>
34 </parent>
herbertcbbc3522020-01-30 10:39:37 +010035
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050036 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
37 <artifactId>sdnr-wt-netconfnode-state-service-model</artifactId>
Dan Timoney92897642022-09-20 08:48:12 -040038 <version>1.4.1-SNAPSHOT</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050039 <packaging>bundle</packaging>
herbertcbbc3522020-01-30 10:39:37 +010040
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050041 <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>
herbertcbbc3522020-01-30 10:39:37 +010048
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050049 <properties>
50 <maven.javadoc.skip>true</maven.javadoc.skip>
51 </properties>
herbertcbbc3522020-01-30 10:39:37 +010052
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050053 <dependencies>
54 <dependency>
herbertcbbc3522020-01-30 10:39:37 +010055 <groupId>org.opendaylight.netconf</groupId>
56 <artifactId>sal-netconf-connector</artifactId>
57 <scope>provided</scope>
58 </dependency>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050059 <dependency>
Michael DÜrref3969002021-04-08 06:34:22 +020060 <groupId>org.opendaylight.mdsal</groupId>
61 <artifactId>mdsal-binding-dom-codec-api</artifactId>
62 <scope>provided</scope>
63 </dependency>
64 <dependency>
Ravi Pendurtya1399902021-08-03 14:49:42 +053065 <groupId>${project.groupId}</groupId>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050066 <artifactId>sdnr-wt-data-provider-model</artifactId>
67 <version>${project.version}</version>
Michael Dürre25423c52022-07-20 09:32:50 +020068 <scope>provided</scope>
69 </dependency>
70 <dependency>
71 <groupId>com.google.code.findbugs</groupId>
72 <artifactId>annotations</artifactId>
73 <scope>provided</scope>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050074 </dependency>
75 </dependencies>
herbertcbbc3522020-01-30 10:39:37 +010076
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050077 <build>
78 <plugins>
79 <plugin>
80 <groupId>org.jacoco</groupId>
81 <artifactId>jacoco-maven-plugin</artifactId>
82 <configuration>
83 <excludes>
84 <exclude>**/gen/**</exclude>
85 <exclude>**/generated-sources/**</exclude>
86 <exclude>**/yang-gen-sal/**</exclude>
87 <exclude>**/pax/**</exclude>
88 </excludes>
89 </configuration>
90 </plugin>
91 </plugins>
92 </build>
herbertcbbc3522020-01-30 10:39:37 +010093</project>