Initial code drop of netconf protocol implementation
[controller.git] / opendaylight / netconf / netconf-util / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          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         <artifactId>netconf-subsystem</artifactId>
7         <groupId>org.opendaylight.controller</groupId>
8         <version>0.2.1-SNAPSHOT</version>
9     </parent>
10     <artifactId>netconf-util</artifactId>
11     <name>${project.artifactId}</name>
12     <packaging>bundle</packaging>
13
14
15     <dependencies>
16         <!-- compile dependencies -->
17         <dependency>
18             <groupId>${project.groupId}</groupId>
19             <artifactId>netconf-api</artifactId>
20             <version>${project.version}</version>
21         </dependency>
22         <dependency>
23             <groupId>${project.groupId}</groupId>
24             <artifactId>netconf-mapping-api</artifactId>
25             <version>${project.version}</version>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.controller</groupId>
29             <artifactId>config-api</artifactId>
30             <version>0.2.1-SNAPSHOT</version>
31         </dependency>
32         <dependency>
33             <groupId>org.opendaylight.bgpcep</groupId>
34             <artifactId>framework</artifactId>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.bgpcep</groupId>
38             <artifactId>util</artifactId>
39         </dependency>
40
41         <dependency>
42             <groupId>org.osgi</groupId>
43             <artifactId>org.osgi.core</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>com.google.guava</groupId>
47             <artifactId>guava</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.slf4j</groupId>
51             <artifactId>slf4j-api</artifactId>
52         </dependency>
53     </dependencies>
54
55     <build>
56         <plugins>
57             <plugin>
58                 <groupId>org.apache.felix</groupId>
59                 <artifactId>maven-bundle-plugin</artifactId>
60                 <configuration>
61                     <instructions>
62                         <Export-Package>
63                             org.opendaylight.controller.netconf.util,
64                             org.opendaylight.controller.netconf.util.xml,
65                             org.opendaylight.controller.netconf.util.osgi,
66                             org.opendaylight.controller.netconf.util.mapping,
67                             org.opendaylight.controller.netconf.util.messages,
68                         </Export-Package>
69                         <Import-Package>
70                             org.opendaylight.controller.config.stat,
71                             com.google.common.base,
72                             com.google.common.collect,
73                             io.netty.buffer,
74                             io.netty.channel,
75                             io.netty.channel.socket,
76                             io.netty.handler.codec,
77                             io.netty.handler.ssl,
78                             io.netty.util,
79                             io.netty.util.concurrent,
80                             javax.annotation,
81                             javax.net.ssl,
82                             javax.xml.namespace,
83                             javax.xml.parsers,
84                             javax.xml.transform,
85                             javax.xml.transform.dom,
86                             javax.xml.transform.stream,
87                             javax.xml.validation,
88                             javax.xml.xpath,
89                             org.opendaylight.controller.netconf.api,
90                             org.opendaylight.controller.netconf.mapping.api,
91                             org.opendaylight.protocol.framework,
92                             org.opendaylight.protocol.util,
93                             org.osgi.framework,
94                             org.slf4j,
95                             org.w3c.dom,
96                             org.xml.sax,
97                         </Import-Package>
98                     </instructions>
99                 </configuration>
100             </plugin>
101             <plugin>
102                 <groupId>org.apache.maven.plugins</groupId>
103                 <artifactId>maven-jar-plugin</artifactId>
104                 <version>2.4</version>
105                 <executions>
106                     <execution>
107                         <phase>package</phase>
108                         <goals>
109                             <goal>test-jar</goal>
110                         </goals>
111                     </execution>
112                 </executions>
113             </plugin>
114         </plugins>
115     </build>
116
117 </project>