Merge "Integration test added to netconf-it to test identity (de)serialization."
[controller.git] / opendaylight / netconf / netconf-impl / 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
4     <parent>
5         <artifactId>netconf-subsystem</artifactId>
6         <groupId>org.opendaylight.controller</groupId>
7         <version>0.2.5-SNAPSHOT</version>
8     </parent>
9     <modelVersion>4.0.0</modelVersion>
10     <artifactId>netconf-impl</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>ietf-netconf-monitoring</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>${project.groupId}</groupId>
27             <artifactId>ietf-netconf-monitoring-extension</artifactId>
28             <version>${project.version}</version>
29         </dependency>
30         <dependency>
31             <groupId>${project.groupId}</groupId>
32             <artifactId>netconf-util</artifactId>
33         </dependency>
34         <dependency>
35             <groupId>org.opendaylight.controller</groupId>
36             <artifactId>config-util</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.controller</groupId>
40             <artifactId>protocol-framework</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}</groupId>
44             <artifactId>netconf-mapping-api</artifactId>
45         </dependency>
46
47         <dependency>
48             <groupId>org.opendaylight.yangtools.model</groupId>
49             <artifactId>ietf-inet-types</artifactId>
50         </dependency>
51
52         <dependency>
53             <groupId>org.osgi</groupId>
54             <artifactId>org.osgi.core</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>com.google.guava</groupId>
58             <artifactId>guava</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.slf4j</groupId>
62             <artifactId>slf4j-api</artifactId>
63         </dependency>
64         <!-- test dependencies -->
65         <dependency>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>mockito-configuration</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>commons-io</groupId>
71             <artifactId>commons-io</artifactId>
72             <scope>test</scope>
73         </dependency>
74
75         <dependency>
76             <groupId>${project.groupId}</groupId>
77             <artifactId>yang-store-api</artifactId>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>xmlunit</groupId>
82             <artifactId>xmlunit</artifactId>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>${project.groupId}</groupId>
87             <artifactId>netconf-util</artifactId>
88             <scope>test</scope>
89             <type>test-jar</type>
90         </dependency>
91         <dependency>
92             <groupId>${project.groupId}</groupId>
93             <artifactId>netconf-client</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97           <groupId>org.opendaylight.controller</groupId>
98           <artifactId>commons.logback_settings</artifactId>
99         </dependency>
100     </dependencies>
101
102     <build>
103         <plugins>
104             <plugin>
105                 <groupId>org.apache.felix</groupId>
106                 <artifactId>maven-bundle-plugin</artifactId>
107                 <configuration>
108                     <instructions>
109                         <Bundle-Activator>org.opendaylight.controller.netconf.impl.osgi.NetconfImplActivator</Bundle-Activator>
110                         <Import-Package>
111                             com.google.common.base,
112                             com.google.common.collect,
113                             io.netty.channel,
114                             io.netty.channel.socket,
115                             io.netty.util,
116                             io.netty.util.concurrent,
117                             io.netty.buffer,
118                             io.netty.handler.codec,
119                             io.netty.channel.nio,
120                             javax.annotation,
121                             javax.management,
122                             javax.net.ssl,
123                             javax.xml.namespace,
124                             javax.xml.xpath,
125                             org.opendaylight.controller.netconf.api,
126                             org.opendaylight.controller.netconf.api.jmx,
127                             org.opendaylight.controller.netconf.mapping.api,
128                             org.opendaylight.controller.netconf.util,
129                             org.opendaylight.controller.netconf.util.mapping,
130                             org.opendaylight.controller.netconf.util.osgi,
131                             org.opendaylight.controller.netconf.util.xml,
132                             org.opendaylight.controller.netconf.util.handler,
133                             org.opendaylight.protocol.framework,
134                             org.osgi.framework,
135                             org.osgi.util.tracker,
136                             org.slf4j,
137                             org.w3c.dom,
138                             org.xml.sax,
139                             org.opendaylight.controller.netconf.util.messages,
140                             io.netty.util.internal,
141                             org.opendaylight.controller.netconf.api.monitoring,
142                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924,
143                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev100924,
144                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.monitoring.rev101004,
145                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.monitoring.rev101004.netconf.state,
146                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.monitoring.rev101004.netconf.state.sessions,
147                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.monitoring.rev101004.netconf.state.schemas,
148                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.monitoring.extension.rev131210,
149                             org.opendaylight.yangtools.yang.binding,
150                         </Import-Package>
151                     </instructions>
152                 </configuration>
153             </plugin>
154             <plugin>
155                 <groupId>org.apache.maven.plugins</groupId>
156                 <artifactId>maven-jar-plugin</artifactId>
157                 <version>2.4</version>
158             </plugin>
159         </plugins>
160     </build>
161
162
163 </project>