Merge "BUG-625: migrate InventoryAndReadAdapter"
[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   <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-impl</artifactId>
11   <packaging>bundle</packaging>
12   <name>${project.artifactId}</name>
13
14   <dependencies>
15     <dependency>
16       <groupId>${project.groupId}</groupId>
17       <artifactId>ietf-netconf-monitoring</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>${project.groupId}</groupId>
21       <artifactId>ietf-netconf-monitoring-extension</artifactId>
22       <version>${project.version}</version>
23     </dependency>
24     <!-- compile dependencies -->
25     <dependency>
26       <groupId>${project.groupId}</groupId>
27       <artifactId>netconf-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>${project.groupId}</groupId>
31       <artifactId>netconf-mapping-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>${project.groupId}</groupId>
35       <artifactId>netconf-netty-util</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>${project.groupId}</groupId>
39       <artifactId>netconf-util</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>com.google.guava</groupId>
43       <artifactId>guava</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>commons.logback_settings</artifactId>
48     </dependency>
49     <dependency>
50       <groupId>org.opendaylight.controller</groupId>
51       <artifactId>config-util</artifactId>
52     </dependency>
53     <dependency>
54       <groupId>org.opendaylight.controller</groupId>
55       <artifactId>protocol-framework</artifactId>
56     </dependency>
57     <!-- test dependencies -->
58     <dependency>
59       <groupId>org.opendaylight.yangtools</groupId>
60       <artifactId>mockito-configuration</artifactId>
61     </dependency>
62
63     <dependency>
64       <groupId>org.opendaylight.yangtools.model</groupId>
65       <artifactId>ietf-inet-types</artifactId>
66     </dependency>
67
68     <dependency>
69       <groupId>org.osgi</groupId>
70       <artifactId>org.osgi.core</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.slf4j</groupId>
74       <artifactId>slf4j-api</artifactId>
75     </dependency>
76     <dependency>
77       <groupId>${project.groupId}</groupId>
78       <artifactId>netconf-client</artifactId>
79       <scope>test</scope>
80     </dependency>
81     <dependency>
82       <groupId>${project.groupId}</groupId>
83       <artifactId>netconf-client</artifactId>
84       <version>${project.version}</version>
85       <type>test-jar</type>
86       <scope>test</scope>
87     </dependency>
88     <dependency>
89       <groupId>${project.groupId}</groupId>
90       <artifactId>netconf-util</artifactId>
91       <type>test-jar</type>
92       <scope>test</scope>
93     </dependency>
94     <dependency>
95       <groupId>commons-io</groupId>
96       <artifactId>commons-io</artifactId>
97       <scope>test</scope>
98     </dependency>
99
100     <dependency>
101       <groupId>xmlunit</groupId>
102       <artifactId>xmlunit</artifactId>
103       <scope>test</scope>
104     </dependency>
105   </dependencies>
106
107   <build>
108     <plugins>
109       <plugin>
110         <groupId>org.apache.felix</groupId>
111         <artifactId>maven-bundle-plugin</artifactId>
112         <version>2.3.7</version>
113         <configuration>
114           <instructions>
115             <Bundle-Activator>org.opendaylight.controller.netconf.impl.osgi.NetconfImplActivator</Bundle-Activator>
116             <Import-Package>com.google.common.base,
117                             com.google.common.collect,
118                             io.netty.channel,
119                             io.netty.channel.socket,
120                             io.netty.util,
121                             io.netty.util.concurrent,
122                             io.netty.buffer,
123                             io.netty.handler.codec,
124                             io.netty.channel.nio,
125                             io.netty.channel.local,
126                             javax.annotation,
127                             javax.management,
128                             javax.net.ssl,
129                             javax.xml.namespace,
130                             javax.xml.xpath,
131                             org.opendaylight.controller.netconf.api,
132                             org.opendaylight.controller.netconf.api.jmx,
133                             org.opendaylight.controller.netconf.mapping.api,
134                             org.opendaylight.controller.netconf.util.*,
135                             org.opendaylight.protocol.framework,
136                             org.osgi.framework,
137                             org.osgi.util.tracker,
138                             org.slf4j,
139                             org.w3c.dom,
140                             org.xml.sax,
141                             io.netty.util.internal,
142                             org.opendaylight.controller.netconf.api.monitoring,
143                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924,
144                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev100924,
145                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.monitoring.rev101004,
146                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.monitoring.rev101004.netconf.state,
147                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.monitoring.rev101004.netconf.state.sessions,
148                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.monitoring.rev101004.netconf.state.schemas,
149                             org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.netconf.monitoring.extension.rev131210,
150                             org.opendaylight.yangtools.yang.binding,
151                             org.openexi.*,
152                             org.opendaylight.controller.netconf.nettyutil.*</Import-Package>
153           </instructions>
154         </configuration>
155       </plugin>
156       <plugin>
157         <groupId>org.apache.maven.plugins</groupId>
158         <artifactId>maven-jar-plugin</artifactId>
159         <version>2.4</version>
160         <executions>
161           <execution>
162             <goals>
163               <goal>test-jar</goal>
164             </goals>
165             <phase>package</phase>
166           </execution>
167         </executions>
168       </plugin>
169     </plugins>
170   </build>
171
172 </project>