Bump versions to 4.0.0-SNAPSHOT
[netconf.git] / netconf / netconf-console / pom.xml
index 678a3c43740f19fb0a1f6e1229b345d901589d57..b8a9b85ceb5d5cae38f586377a49674f77c9debd 100644 (file)
@@ -11,13 +11,11 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
   <parent>
     <groupId>org.opendaylight.netconf</groupId>
     <artifactId>netconf-parent</artifactId>
-    <version>1.6.0-SNAPSHOT</version>
-    <relativePath>../netconf-parent</relativePath>
+    <version>4.0.0-SNAPSHOT</version>
+    <relativePath>../../parent</relativePath>
   </parent>
 
-  <groupId>org.opendaylight.netconf</groupId>
   <artifactId>netconf-console</artifactId>
-  <version>1.6.0-SNAPSHOT</version>
   <name>${project.artifactId}</name>
   <packaging>bundle</packaging>
 
@@ -28,36 +26,46 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
           <artifactId>org.apache.karaf.shell.console</artifactId>
           <scope>provided</scope>
       </dependency>
-
-      <!-- Project Dependencies -->
       <dependency>
           <groupId>org.opendaylight.netconf</groupId>
           <artifactId>sal-netconf-connector</artifactId>
       </dependency>
       <dependency>
-          <groupId>org.mockito</groupId>
-          <artifactId>mockito-core</artifactId>
-          <scope>test</scope>
+          <groupId>com.guicedee.services</groupId>
+          <artifactId>javax.inject</artifactId>
+          <optional>true</optional>
       </dependency>
       <dependency>
-          <groupId>org.opendaylight.yangtools</groupId>
-          <artifactId>yang-test-util</artifactId>
+          <groupId>org.osgi</groupId>
+          <artifactId>org.osgi.service.component.annotations</artifactId>
       </dependency>
+
       <dependency>
-          <groupId>org.opendaylight.mdsal</groupId>
-          <artifactId>mdsal-binding-dom-adapter</artifactId>
-          <scope>test</scope>
+          <groupId>org.opendaylight.yangtools</groupId>
+          <artifactId>yang-test-util</artifactId>
       </dependency>
       <dependency>
           <groupId>org.opendaylight.mdsal</groupId>
-          <artifactId>mdsal-binding-dom-adapter</artifactId>
-          <scope>test</scope>
-          <type>test-jar</type>
+          <artifactId>mdsal-binding-test-utils</artifactId>
       </dependency>
       <dependency>
           <groupId>org.awaitility</groupId>
           <artifactId>awaitility</artifactId>
-          <scope>test</scope>
       </dependency>
   </dependencies>
+
+  <build>
+      <plugins>
+          <plugin>
+              <groupId>org.apache.felix</groupId>
+              <artifactId>maven-bundle-plugin</artifactId>
+              <extensions>true</extensions>
+              <configuration>
+                  <instructions>
+                      <Karaf-Commands>*</Karaf-Commands>
+                  </instructions>
+              </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>