missing dependecies reviewed and fixed
[controller.git] / opendaylight / netconf / netconf-ssh / pom.xml
index 794bb16605fc1b0d572ac3b08b2f3a26ba607831..d91564ba0ba3a6b70292f83e028debeb318ce261 100644 (file)
             <groupId>commons-io</groupId>
             <artifactId>commons-io</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.opendaylight.controller</groupId>
+            <artifactId>usermanager</artifactId>
+            <version>0.4.1-SNAPSHOT</version>
+        </dependency>
     </dependencies>
 
     <build>
         <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <version>2.4</version>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>test-jar</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
                 <configuration>
                     <instructions>
                         <Bundle-Activator>org.opendaylight.controller.netconf.osgi.NetconfSSHActivator</Bundle-Activator>
-                        <Export-Package>
-                            org.opendaylight.controller.netconf.ssh,
-                        </Export-Package>
                         <Import-Package>
                             com.google.common.base,
-                            com.google.common.collect,
                             ch.ethz.ssh2,
                             ch.ethz.ssh2.signature,
-                            io.netty.buffer,
-                            io.netty.channel,
-                            io.netty.channel.nio,
-                            io.netty.channel.socket,
-                            io.netty.util,
-                            io.netty.util.concurrent,
-                            javax.annotation,
-                            java.net,
-                            javax.net.ssl,
-                            javax.xml.namespace,
-                            javax.xml.parsers,
-                            javax.xml.xpath,
                             org.apache.commons.io,
-                            org.opendaylight.controller.netconf.api,
-                            org.opendaylight.controller.netconf.client,
-                            org.opendaylight.controller.netconf.util,
                             org.opendaylight.controller.netconf.util.osgi,
-                            org.opendaylight.controller.netconf.util.xml,
-                            org.opendaylight.protocol.framework,
+                            org.opendaylight.controller.usermanager,
+                            org.opendaylight.controller.sal.authorization,
+                            org.opendaylight.controller.sal.utils,
                             org.osgi.framework,
+                            org.osgi.util.tracker,
                             org.slf4j,
-                            org.w3c.dom,
-                            org.xml.sax
                         </Import-Package>
                     </instructions>
                 </configuration>