remove curious hard-coded yangtools 2.1.8 which seems no longer needed
[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     </dependency>
77     <dependency>
78       <groupId>org.osgi</groupId>
79       <artifactId>org.osgi.compendium</artifactId>
80     </dependency>
81   </dependencies>
82
83   <build>
84     <plugins>
85       <plugin>
86         <groupId>org.apache.felix</groupId>
87         <artifactId>maven-bundle-plugin</artifactId>
88       </plugin>
89       <plugin>
90         <groupId>org.codehaus.mojo</groupId>
91         <artifactId>build-helper-maven-plugin</artifactId>
92         <executions>
93           <execution>
94             <id>attach-artifacts</id>
95             <goals>
96               <goal>attach-artifact</goal>
97             </goals>
98             <phase>package</phase>
99             <configuration>
100               <artifacts>
101                 <artifact>
102                   <file>${project.build.directory}/classes/netconf.cfg</file>
103                   <type>cfg</type>
104                   <classifier>config</classifier>
105                 </artifact>
106               </artifacts>
107             </configuration>
108           </execution>
109         </executions>
110       </plugin>
111       <plugin>
112         <groupId>org.apache.maven.plugins</groupId>
113         <artifactId>maven-jar-plugin</artifactId>
114         <executions>
115           <execution>
116             <goals>
117               <goal>test-jar</goal>
118             </goals>
119             <phase>package</phase>
120           </execution>
121         </executions>
122       </plugin>
123     </plugins>
124   </build>
125
126 </project>