Bump versions by x.y.(z+1)
[netconf.git] / netconf / netconf-console / pom.xml
index 8e4e05f93c1a1e701ac9596320f153c71ef14591..98166dd48ba699486f079b55ca9515152aabd999 100644 (file)
@@ -9,36 +9,65 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <groupId>org.opendaylight.controller</groupId>
-    <artifactId>config-parent</artifactId>
-    <version>0.6.0-SNAPSHOT</version>
-    <relativePath/>
+    <groupId>org.opendaylight.netconf</groupId>
+    <artifactId>netconf-parent</artifactId>
+    <version>1.6.3-SNAPSHOT</version>
+    <relativePath>../netconf-parent</relativePath>
   </parent>
 
   <groupId>org.opendaylight.netconf</groupId>
   <artifactId>netconf-console</artifactId>
-  <version>1.2.0-SNAPSHOT</version>
+  <version>1.6.3-SNAPSHOT</version>
   <name>${project.artifactId}</name>
   <packaging>bundle</packaging>
 
   <dependencies>
-    <!-- Apache Karaf console dependency -->
-    <dependency>
-     <groupId>org.apache.karaf.shell</groupId>
-     <artifactId>org.apache.karaf.shell.console</artifactId>
-     <version>${karaf.version}</version>
-    </dependency>
-    <dependency>
-     <groupId>org.apache.karaf.shell</groupId>
-     <artifactId>org.apache.karaf.shell.table</artifactId>
-     <version>${karaf.version}</version>
-    </dependency>
+      <!-- Apache Karaf console dependency -->
+      <dependency>
+          <groupId>org.apache.karaf.shell</groupId>
+          <artifactId>org.apache.karaf.shell.console</artifactId>
+          <scope>provided</scope>
+      </dependency>
 
-    <!-- Project Dependencies -->
-    <dependency>
-      <groupId>org.opendaylight.netconf</groupId>
-      <artifactId>sal-netconf-connector</artifactId>
-      <version>${mdsal.version}</version>
-    </dependency>
+      <!-- Project Dependencies -->
+      <dependency>
+          <groupId>org.opendaylight.netconf</groupId>
+          <artifactId>sal-netconf-connector</artifactId>
+      </dependency>
+      <dependency>
+          <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>
+      </dependency>
+      <dependency>
+          <groupId>org.opendaylight.mdsal</groupId>
+          <artifactId>mdsal-binding-dom-adapter</artifactId>
+          <scope>test</scope>
+          <type>test-jar</type>
+      </dependency>
+      <dependency>
+          <groupId>org.awaitility</groupId>
+          <artifactId>awaitility</artifactId>
+          <scope>test</scope>
+      </dependency>
   </dependencies>
-</project>
\ No newline at end of file
+
+  <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>