Release netconf
[netconf.git] / netconf / netconf-console / pom.xml
index b4c260009a615fa554bed8cd1dbc160583ee25be..4b2d209650ddd61ffccbd35a7aaf7ba6294fedbb 100644 (file)
@@ -9,60 +9,63 @@ 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>4.0.2</version>
+    <relativePath>../../parent</relativePath>
   </parent>
 
-  <groupId>org.opendaylight.netconf</groupId>
   <artifactId>netconf-console</artifactId>
-  <version>1.2.0-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>
-
-    <!-- Project Dependencies -->
-    <dependency>
-      <groupId>org.opendaylight.netconf</groupId>
-      <artifactId>sal-netconf-connector</artifactId>
-      <version>${mdsal.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>
       <dependency>
-          <groupId>org.mockito</groupId>
-          <artifactId>mockito-all</artifactId>
-          <scope>test</scope>
+          <groupId>org.opendaylight.netconf</groupId>
+          <artifactId>sal-netconf-connector</artifactId>
       </dependency>
       <dependency>
-          <groupId>org.opendaylight.controller</groupId>
-          <artifactId>sal-distributed-datastore</artifactId>
-          <scope>test</scope>
+          <groupId>com.guicedee.services</groupId>
+          <artifactId>javax.inject</artifactId>
+          <optional>true</optional>
       </dependency>
       <dependency>
-          <groupId>org.powermock</groupId>
-          <artifactId>powermock-module-junit4</artifactId>
-          <scope>test</scope>
+          <groupId>org.osgi</groupId>
+          <artifactId>org.osgi.service.component.annotations</artifactId>
       </dependency>
+
       <dependency>
-          <groupId>org.powermock</groupId>
-          <artifactId>powermock-api-mockito</artifactId>
-          <scope>test</scope>
+          <groupId>org.opendaylight.yangtools</groupId>
+          <artifactId>yang-test-util</artifactId>
       </dependency>
       <dependency>
-          <groupId>org.powermock</groupId>
-          <artifactId>powermock-core</artifactId>
+          <groupId>org.opendaylight.mdsal</groupId>
+          <artifactId>mdsal-binding-test-utils</artifactId>
+      </dependency>
+      <dependency>
+          <groupId>org.awaitility</groupId>
+          <artifactId>awaitility</artifactId>
       </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>