Merge "Skip install and deploy of karaf artifact."
authorTony Tkacik <ttkacik@cisco.com>
Tue, 24 Feb 2015 08:25:49 +0000 (08:25 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Tue, 24 Feb 2015 08:25:49 +0000 (08:25 +0000)
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>