Cleanup karaf distro 22/83822/8
authorRobert Varga <robert.varga@pantheon.tech>
Tue, 20 Aug 2019 17:24:23 +0000 (19:24 +0200)
committerRobert Varga <nite@hq.sk>
Mon, 26 Aug 2019 13:58:41 +0000 (13:58 +0000)
Simplify declaration that we do not want to install/deploy
the karaf distribution. Since we are not publishing the
artifact, there is no point to carry an <scm/> section.

Change-Id: I503495eefb0ee3dd02dcb618275346071a685009
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
karaf/pom.xml

index a9784a7154c1ad6d8c269b72148425b96ea4f9ce..3edb4909ad5b9452b9655fe555728a7ef5a479f2 100644 (file)
   <version>1.11.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
+  <properties>
+    <maven.deploy.skip>true</maven.deploy.skip>
+    <maven.install.skip>true</maven.install.skip>
+  </properties>
+
   <dependencyManagement>
     <dependencies>
       <dependency>
       <scope>runtime</scope>
     </dependency>
   </dependencies>
-
-  <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>
-
-  <scm>
-    <connection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</connection>
-    <developerConnection>scm:git:ssh://git.opendaylight.org:29418/netconf.git</developerConnection>
-    <tag>HEAD</tag>
-    <url>https://git.opendaylight.org/gerrit/gitweb?p=netconf.git;a=summary</url>
-  </scm>
 </project>