Bug 8741: Fix broken Maven archetype
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / cli / pom.xml
index 79ae689beca91a539b19bba7e09435b8dcb02e35..fa0c1fb5b34dce32aabd4a5fbe236be675e62451 100644 (file)
@@ -12,7 +12,6 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
 -->
 <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">
-
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
@@ -30,6 +29,18 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
   <name>ODL :: ${groupId} :: ${project.artifactId}</name>
   <packaging>bundle</packaging>
 
+  <dependencyManagement>
+      <dependencies>
+          <dependency>
+              <groupId>org.opendaylight.controller</groupId>
+              <artifactId>mdsal-artifacts</artifactId>
+              <version>1.7.0-SNAPSHOT</version>
+              <type>pom</type>
+              <scope>import</scope>
+          </dependency>
+      </dependencies>
+  </dependencyManagement>
+
   <dependencies>
     <!-- Project Dependencies -->
     <dependency>
@@ -38,6 +49,11 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
       <version>${symbol_dollar}{project.version}</version>
     </dependency>
 
+    <dependency>
+      <groupId>org.opendaylight.controller</groupId>
+      <artifactId>sal-binding-api</artifactId>
+    </dependency>
+
     <!-- Apache Karaf console dependency -->
     <dependency>
       <groupId>org.apache.karaf.shell</groupId>