Decouple config and netconf subsystems.
[controller.git] / opendaylight / netconf / netconf-util / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>netconf-subsystem</artifactId>
8     <version>0.4.0-SNAPSHOT</version>
9   </parent>
10   <artifactId>netconf-util</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <!-- compile dependencies -->
16     <dependency>
17       <groupId>org.opendaylight.controller</groupId>
18       <artifactId>config-manager-facade-xml</artifactId>
19       <version>0.4.0-SNAPSHOT</version>
20     </dependency>
21     <dependency>
22       <groupId>${project.groupId}</groupId>
23       <artifactId>netconf-api</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>netconf-mapping-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>com.google.guava</groupId>
31       <artifactId>guava</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>io.netty</groupId>
35       <artifactId>netty-handler</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.controller</groupId>
39       <artifactId>config-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.slf4j</groupId>
43       <artifactId>slf4j-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>xmlunit</groupId>
47       <artifactId>xmlunit</artifactId>
48       <scope>test</scope>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.yangtools</groupId>
52       <artifactId>mockito-configuration</artifactId>
53     </dependency>
54   <dependency>
55       <groupId>org.opendaylight.yangtools</groupId>
56       <artifactId>yang-model-api</artifactId>
57   </dependency>
58     <dependency>
59       <groupId>org.opendaylight.yangtools</groupId>
60       <artifactId>yang-data-api</artifactId>
61     </dependency>
62   </dependencies>
63
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.apache.felix</groupId>
68         <artifactId>maven-bundle-plugin</artifactId>
69         <configuration>
70           <instructions>
71             <Export-Package>org.opendaylight.controller.netconf.util.*</Export-Package>
72           </instructions>
73         </configuration>
74       </plugin>
75       <plugin>
76         <groupId>org.apache.maven.plugins</groupId>
77         <artifactId>maven-jar-plugin</artifactId>
78         <executions>
79           <execution>
80             <goals>
81               <goal>test-jar</goal>
82             </goals>
83             <phase>package</phase>
84           </execution>
85         </executions>
86       </plugin>
87     </plugins>
88   </build>
89
90 </project>