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