Skip install and deploy of karaf artifact. 64/14864/3
authorNathan Harmon <nathan.harmon@hp.com>
Wed, 4 Feb 2015 22:21:23 +0000 (14:21 -0800)
committerNathan Harmon <nathan.harmon@hp.com>
Mon, 23 Feb 2015 16:33:58 +0000 (08:33 -0800)
Change-Id: Ib96201b9408216c58b3d573c593a523ef65eafd0
Signed-off-by: Nathan Harmon <nathan.harmon@hp.com>
opendaylight/archetypes/opendaylight-startup/src/main/resources/archetype-resources/karaf/pom.xml

index 87b955c6b95c73233a4a475445b23f8dd74cbccb..5ec5485723f56b18ded10e18df385d045005229f 100644 (file)
@@ -54,4 +54,23 @@ and is available at http://www.eclipse.org/legal/epl-v10.html INTERNAL
       <scope>runtime</scope>
     </dependency>
   </dependencies>
+  <!-- DO NOT install or deploy the karaf artifact -->
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-install-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>