Bump yangtools to 2.1.8
[netconf.git] / netconf / netconf-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8 -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.netconf</groupId>
14     <artifactId>netconf-parent</artifactId>
15     <version>1.6.0-SNAPSHOT</version>
16     <relativePath>../netconf-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>netconf-util</artifactId>
21   <version>1.6.0-SNAPSHOT</version>
22   <name>${project.artifactId}</name>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <!-- compile dependencies -->
27     <dependency>
28       <groupId>${project.groupId}</groupId>
29       <artifactId>netconf-api</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>${project.groupId}</groupId>
33       <artifactId>netconf-mapping-api</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>com.google.guava</groupId>
37       <artifactId>guava</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>io.netty</groupId>
41       <artifactId>netty-handler</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.slf4j</groupId>
45       <artifactId>slf4j-api</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.xmlunit</groupId>
49       <artifactId>xmlunit-legacy</artifactId>
50       <scope>test</scope>
51     </dependency>
52    <dependency>
53       <groupId>org.opendaylight.mdsal</groupId>
54       <artifactId>mdsal-binding-generator-impl</artifactId>
55       <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.yangtools</groupId>
59       <artifactId>mockito-configuration</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.yangtools</groupId>
63       <artifactId>yang-model-api</artifactId>
64     </dependency>
65     <dependency>
66       <groupId>org.opendaylight.yangtools</groupId>
67       <artifactId>yang-data-api</artifactId>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.yangtools</groupId>
71       <artifactId>yang-data-impl</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>org.opendaylight.yangtools</groupId>
75       <artifactId>yang-data-codec-xml</artifactId>
76       <version>2.1.8</version>
77     </dependency>
78     <dependency>
79       <groupId>org.osgi</groupId>
80       <artifactId>org.osgi.compendium</artifactId>
81     </dependency>
82   </dependencies>
83
84   <build>
85     <plugins>
86       <plugin>
87         <groupId>org.apache.felix</groupId>
88         <artifactId>maven-bundle-plugin</artifactId>
89       </plugin>
90       <plugin>
91         <groupId>org.codehaus.mojo</groupId>
92         <artifactId>build-helper-maven-plugin</artifactId>
93         <executions>
94           <execution>
95             <id>attach-artifacts</id>
96             <goals>
97               <goal>attach-artifact</goal>
98             </goals>
99             <phase>package</phase>
100             <configuration>
101               <artifacts>
102                 <artifact>
103                   <file>${project.build.directory}/classes/netconf.cfg</file>
104                   <type>cfg</type>
105                   <classifier>config</classifier>
106                 </artifact>
107               </artifacts>
108             </configuration>
109           </execution>
110         </executions>
111       </plugin>
112       <plugin>
113         <groupId>org.apache.maven.plugins</groupId>
114         <artifactId>maven-jar-plugin</artifactId>
115         <executions>
116           <execution>
117             <goals>
118               <goal>test-jar</goal>
119             </goals>
120             <phase>package</phase>
121           </execution>
122         </executions>
123       </plugin>
124     </plugins>
125   </build>
126
127 </project>