Merge "Fixed typo in test name. Temporary ignore test."
[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.2.5-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>${project.groupId}</groupId>
18       <artifactId>netconf-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>${project.groupId}</groupId>
22       <artifactId>netconf-mapping-api</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>com.google.guava</groupId>
26       <artifactId>guava</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>io.netty</groupId>
30       <artifactId>netty-handler</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.controller</groupId>
34       <artifactId>config-api</artifactId>
35     </dependency>
36     <dependency>
37       <groupId>org.opendaylight.controller</groupId>
38       <artifactId>protocol-framework</artifactId>
39     </dependency>
40     <dependency>
41       <groupId>org.opendaylight.controller.thirdparty</groupId>
42       <artifactId>ganymed</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.controller.thirdparty</groupId>
46       <artifactId>nagasena</artifactId>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller.thirdparty</groupId>
50       <artifactId>nagasena-rta</artifactId>
51     </dependency>
52
53     <dependency>
54       <groupId>org.osgi</groupId>
55       <artifactId>org.osgi.core</artifactId>
56     </dependency>
57     <dependency>
58       <groupId>org.slf4j</groupId>
59       <artifactId>slf4j-api</artifactId>
60     </dependency>
61     <dependency>
62       <groupId>xmlunit</groupId>
63       <artifactId>xmlunit</artifactId>
64     </dependency>
65   </dependencies>
66
67   <build>
68     <plugins>
69       <plugin>
70         <groupId>org.apache.felix</groupId>
71         <artifactId>maven-bundle-plugin</artifactId>
72         <configuration>
73           <instructions>
74             <Export-Package>org.opendaylight.controller.netconf.util,
75                             org.opendaylight.controller.netconf.util.xml,
76                             org.opendaylight.controller.netconf.util.osgi,
77                             org.opendaylight.controller.netconf.util.mapping,
78                             org.opendaylight.controller.netconf.util.messages,
79                             org.opendaylight.controller.netconf.util.handler,
80                             org.opendaylight.controller.netconf.util.handler.*,
81                             org.opendaylight.controller.netconf.util.exception,</Export-Package>
82             <Import-Package>com.google.common.base,
83                             com.google.common.collect,
84                             ch.ethz.ssh2,
85                             io.netty.buffer,
86                             io.netty.channel,
87                             io.netty.channel.socket,
88                             io.netty.handler.codec,
89                             io.netty.handler.ssl,
90                             io.netty.util,
91                             io.netty.util.concurrent,
92                             javax.annotation,
93                             javax.net.ssl,
94                             javax.xml.namespace,
95                             javax.xml.parsers,
96                             javax.xml.transform,
97                             javax.xml.transform.dom,
98                             javax.xml.transform.stream,
99                             javax.xml.validation,
100                             javax.xml.xpath,
101                             javax.xml.transform.sax,
102                             org.opendaylight.controller.netconf.api,
103                             org.opendaylight.controller.netconf.mapping.api,
104                             org.opendaylight.protocol.framework,
105                             org.osgi.framework,
106                             org.slf4j,
107                             org.w3c.dom,
108                             org.xml.sax,
109                             org.xml.sax.helpers,
110                             org.opendaylight.controller.config.api,
111                             org.openexi.*,</Import-Package>
112           </instructions>
113         </configuration>
114       </plugin>
115       <plugin>
116         <groupId>org.apache.maven.plugins</groupId>
117         <artifactId>maven-jar-plugin</artifactId>
118         <version>2.4</version>
119         <executions>
120           <execution>
121             <goals>
122               <goal>test-jar</goal>
123             </goals>
124             <phase>package</phase>
125           </execution>
126         </executions>
127       </plugin>
128     </plugins>
129   </build>
130
131 </project>