Release netconf
[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.13.4</version>
16     <relativePath>../../parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.netconf</groupId>
20   <artifactId>netconf-util</artifactId>
21   <version>1.13.4</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-common</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>io.netty</groupId>
45       <artifactId>netty-transport</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.slf4j</groupId>
49       <artifactId>slf4j-api</artifactId>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.yangtools</groupId>
53       <artifactId>mockito-configuration</artifactId>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.yangtools</groupId>
57       <artifactId>yang-model-api</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.yangtools</groupId>
61       <artifactId>yang-data-api</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.yangtools</groupId>
65       <artifactId>yang-data-impl</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.yangtools</groupId>
69       <artifactId>yang-data-codec-xml</artifactId>
70     </dependency>
71     <dependency>
72       <groupId>org.osgi</groupId>
73       <artifactId>osgi.cmpn</artifactId>
74     </dependency>
75
76     <dependency>
77       <groupId>org.xmlunit</groupId>
78       <artifactId>xmlunit-legacy</artifactId>
79       <scope>test</scope>
80     </dependency>
81    <dependency>
82       <groupId>org.opendaylight.mdsal</groupId>
83       <artifactId>mdsal-binding-generator-impl</artifactId>
84       <scope>test</scope>
85     </dependency>
86    <dependency>
87       <groupId>org.opendaylight.mdsal</groupId>
88       <artifactId>mdsal-binding-runtime-spi</artifactId>
89       <scope>test</scope>
90     </dependency>
91   </dependencies>
92
93   <build>
94     <plugins>
95       <plugin>
96         <groupId>org.apache.felix</groupId>
97         <artifactId>maven-bundle-plugin</artifactId>
98       </plugin>
99       <plugin>
100         <groupId>org.codehaus.mojo</groupId>
101         <artifactId>build-helper-maven-plugin</artifactId>
102         <executions>
103           <execution>
104             <id>attach-artifacts</id>
105             <goals>
106               <goal>attach-artifact</goal>
107             </goals>
108             <phase>package</phase>
109             <configuration>
110               <artifacts>
111                 <artifact>
112                   <file>${project.build.directory}/classes/netconf.cfg</file>
113                   <type>cfg</type>
114                   <classifier>config</classifier>
115                 </artifact>
116               </artifacts>
117             </configuration>
118           </execution>
119         </executions>
120       </plugin>
121       <plugin>
122         <artifactId>maven-jar-plugin</artifactId>
123         <executions>
124           <execution>
125             <goals>
126               <goal>test-jar</goal>
127             </goals>
128           </execution>
129         </executions>
130       </plugin>
131       <plugin>
132         <artifactId>maven-source-plugin</artifactId>
133         <executions>
134           <execution>
135             <goals>
136               <goal>test-jar-no-fork</goal>
137             </goals>
138           </execution>
139         </executions>
140       </plugin>
141     </plugins>
142   </build>
143
144 </project>