Merge "Change log levels to reduce the amount of logs generated"
[ccsdk/features.git] / sdnr / wt / common-yang / utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- ~ ============LICENSE_START======================================================= 
3         ~ ONAP : ccsdk features ~ ================================================================================ 
4         ~ Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. 
5         ~ All rights reserved. ~ ================================================================================ 
6         ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. 
7         ~ ================================================================================ 
8         ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may 
9         not use this file except in compliance with the License. ~ You may obtain 
10         a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ 
11         ~ Unless required by applicable law or agreed to in writing, software ~ distributed 
12         under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES 
13         OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for 
14         the specific language governing permissions and ~ limitations under the License. 
15         ~ ============LICENSE_END======================================================= 
16         ~ -->
17
18 <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">
19     <modelVersion>4.0.0</modelVersion>
20
21     <parent>
22         <groupId>org.onap.ccsdk.parent</groupId>
23         <artifactId>binding-parent</artifactId>
24         <version>2.5.4-SNAPSHOT</version>
25         <relativePath/>
26     </parent>
27
28     <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
29     <artifactId>sdnr-wt-yang-utils</artifactId>
30     <version>1.5.1-SNAPSHOT</version>
31     <packaging>bundle</packaging>
32
33     <name>ccsdk-features :: ${project.artifactId}</name>
34     <licenses>
35         <license>
36             <name>Apache License, Version 2.0</name>
37             <url>http://www.apache.org/licenses/LICENSE-2.0</url>
38         </license>
39     </licenses>
40
41     <dependencies>
42         <dependency>
43             <groupId>org.osgi</groupId>
44             <artifactId>org.osgi.core</artifactId>
45             <scope>provided</scope>
46         </dependency>
47         <dependency>
48             <groupId>com.google.code.findbugs</groupId>
49             <artifactId>annotations</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>com.fasterxml.jackson.core</groupId>
53             <artifactId>jackson-annotations</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>com.fasterxml.jackson.core</groupId>
57             <artifactId>jackson-databind</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>com.fasterxml.jackson.datatype</groupId>
61             <artifactId>jackson-datatype-jsr310</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
65             <artifactId>rfc6991-ietf-yang-types</artifactId>
66             <scope>provided</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.mdsal</groupId>
70             <artifactId>mdsal-dom-api</artifactId>
71             <scope>provided</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
75             <artifactId>rfc6991-ietf-inet-types</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.json</groupId>
80             <artifactId>json</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}</groupId>
84             <artifactId>sdnr-wt-test-yang</artifactId>
85             <version>${project.version}</version>
86             <scope>test</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.netconf</groupId>
90             <artifactId>sal-netconf-connector</artifactId>
91             <scope>test</scope>
92         </dependency>
93     </dependencies>
94
95     <build>
96         <plugins>
97             <plugin>
98                 <groupId>org.jacoco</groupId>
99                 <artifactId>jacoco-maven-plugin</artifactId>
100                 <configuration>
101                     <excludes>
102                         <exclude>**/gen/**</exclude>
103                         <exclude>**/generated-sources/**</exclude>
104                         <exclude>**/yang-gen-sal/**</exclude>
105                         <exclude>**/pax/**</exclude>
106                     </excludes>
107                 </configuration>
108             </plugin>
109             <plugin>
110                 <groupId>org.opendaylight.yangtools</groupId>
111                 <artifactId>yang-maven-plugin</artifactId>
112                 <version>9.0.1</version>
113                 <executions>
114                     <execution>
115                         <id>binding</id>
116                         <goals>
117                             <goal>generate-sources</goal>
118                         </goals>
119                         <configuration>
120                             <yangFilesRootDir>src/test/yang</yangFilesRootDir>
121                             <inspectDependencies>true</inspectDependencies>
122                         </configuration>
123                     </execution>
124                 </executions>
125                 <dependencies>
126                     <dependency>
127                         <groupId>org.opendaylight.mdsal</groupId>
128                         <artifactId>mdsal-binding-java-api-generator</artifactId>
129                         <version>10.0.2</version>
130                         <scope>compile</scope>
131                     </dependency>
132                 </dependencies>
133             </plugin>
134         </plugins>
135     </build>
136 </project>