Use latest released parent pom
[ccsdk/features.git] / sdnr / wt / common-yang / utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ ONAP : ccsdk features
5   ~ ================================================================================
6   ~ Copyright (C) 2019 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>
32         <version>2.4.4</version>
33         <relativePath/>
34     </parent>
35
36     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
37     <artifactId>sdnr-wt-yang-utils</artifactId>
38     <version>1.4.1-SNAPSHOT</version>
39     <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     <dependencies>
50         <dependency>
51             <groupId>org.osgi</groupId>
52             <artifactId>org.osgi.core</artifactId>
53             <scope>provided</scope>
54         </dependency>
55         <dependency>
56             <groupId>com.google.code.findbugs</groupId>
57             <artifactId>annotations</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>com.fasterxml.jackson.core</groupId>
61             <artifactId>jackson-annotations</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>com.fasterxml.jackson.core</groupId>
65             <artifactId>jackson-databind</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
69             <artifactId>rfc6991-ietf-yang-types</artifactId>
70             <scope>provided</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.opendaylight.mdsal</groupId>
74             <artifactId>mdsal-dom-api</artifactId>
75             <scope>provided</scope>
76         </dependency>
77                 <dependency>
78                     <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
79                     <artifactId>rfc6991-ietf-inet-types</artifactId>
80                     <scope>test</scope>
81                 </dependency>
82         <dependency>
83             <groupId>org.json</groupId>
84             <artifactId>json</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.netconf</groupId>
88             <artifactId>sal-netconf-connector</artifactId>
89             <scope>test</scope>
90         </dependency>
91     </dependencies>
92
93     <build>
94         <plugins>
95             <plugin>
96                 <groupId>org.jacoco</groupId>
97                 <artifactId>jacoco-maven-plugin</artifactId>
98                 <configuration>
99                     <excludes>
100                         <exclude>**/gen/**</exclude>
101                         <exclude>**/generated-sources/**</exclude>
102                         <exclude>**/yang-gen-sal/**</exclude>
103                         <exclude>**/pax/**</exclude>
104                     </excludes>
105                 </configuration>
106             </plugin>
107             <plugin>
108                 <groupId>org.opendaylight.yangtools</groupId>
109                 <artifactId>yang-maven-plugin</artifactId>
110                 <version>7.0.9</version>
111                 <executions>
112                     <execution>
113                         <id>binding</id>
114                         <goals>
115                             <goal>generate-sources</goal>
116                         </goals>
117                         <configuration>
118                             <yangFilesRootDir>src/test/yang</yangFilesRootDir>
119                             <inspectDependencies>true</inspectDependencies>
120                         </configuration>
121                     </execution>
122                 </executions>
123                 <dependencies>
124                     <dependency>
125                         <groupId>org.opendaylight.mdsal</groupId>
126                         <artifactId>mdsal-binding-java-api-generator</artifactId>
127                         <version>8.0.7</version>
128                         <scope>compile</scope>
129                     </dependency>
130                 </dependencies>
131             </plugin>
132         </plugins>
133     </build>
134 </project>