Added DELETE support for Bridge and Port resources
[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.2-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         </dependency>
21         <dependency>
22             <groupId>${project.groupId}</groupId>
23             <artifactId>netconf-mapping-api</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.controller</groupId>
27             <artifactId>config-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.bgpcep</groupId>
31             <artifactId>framework</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.bgpcep</groupId>
35             <artifactId>util</artifactId>
36         </dependency>
37
38         <dependency>
39             <groupId>org.osgi</groupId>
40             <artifactId>org.osgi.core</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>com.google.guava</groupId>
44             <artifactId>guava</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.slf4j</groupId>
48             <artifactId>slf4j-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>io.netty</groupId>
52             <artifactId>netty-handler</artifactId>
53             <version>${netconf.netty.version}</version>
54         </dependency>
55     </dependencies>
56
57     <build>
58         <plugins>
59             <plugin>
60                 <groupId>org.apache.felix</groupId>
61                 <artifactId>maven-bundle-plugin</artifactId>
62                 <configuration>
63                     <instructions>
64                         <Export-Package>
65                             org.opendaylight.controller.netconf.util,
66                             org.opendaylight.controller.netconf.util.xml,
67                             org.opendaylight.controller.netconf.util.osgi,
68                             org.opendaylight.controller.netconf.util.mapping,
69                             org.opendaylight.controller.netconf.util.messages,
70                         </Export-Package>
71                         <Import-Package>
72                             org.opendaylight.controller.config.stat,
73                             com.google.common.base,
74                             com.google.common.collect,
75                             io.netty.buffer,
76                             io.netty.channel,
77                             io.netty.channel.socket,
78                             io.netty.handler.codec,
79                             io.netty.handler.ssl,
80                             io.netty.util,
81                             io.netty.util.concurrent,
82                             javax.annotation,
83                             javax.net.ssl,
84                             javax.xml.namespace,
85                             javax.xml.parsers,
86                             javax.xml.transform,
87                             javax.xml.transform.dom,
88                             javax.xml.transform.stream,
89                             javax.xml.validation,
90                             javax.xml.xpath,
91                             org.opendaylight.controller.netconf.api,
92                             org.opendaylight.controller.netconf.mapping.api,
93                             org.opendaylight.protocol.framework,
94                             org.opendaylight.protocol.util,
95                             org.osgi.framework,
96                             org.slf4j,
97                             org.w3c.dom,
98                             org.xml.sax,
99                         </Import-Package>
100                     </instructions>
101                 </configuration>
102             </plugin>
103             <plugin>
104                 <groupId>org.apache.maven.plugins</groupId>
105                 <artifactId>maven-jar-plugin</artifactId>
106                 <version>2.4</version>
107                 <executions>
108                     <execution>
109                         <phase>package</phase>
110                         <goals>
111                             <goal>test-jar</goal>
112                         </goals>
113                     </execution>
114                 </executions>
115             </plugin>
116         </plugins>
117     </build>
118
119 </project>