Turn samples/pom.xml into an aggregator 86/85386/2
authorRobert Varga <robert.varga@pantheon.tech>
Fri, 25 Oct 2019 11:38:29 +0000 (13:38 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Wed, 6 Nov 2019 16:11:02 +0000 (17:11 +0100)
This pom is not referenced anywhere and is a pure aggregator. Make
sure it inherits from odlparent-lite and is not installed. Speeds
up the build very negligibly.

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

index cfa52320bd9d2f0f63bcc469438060a2b45b2b95..d633724724bdcf368309d02d074c7c25c9d8d54a 100644 (file)
@@ -3,14 +3,22 @@
 
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.opendaylight.openflowplugin</groupId>
-        <artifactId>openflowplugin-parent</artifactId>
-        <version>0.10.0-SNAPSHOT</version>
-        <relativePath>../parent</relativePath>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>odlparent-lite</artifactId>
+        <version>6.0.0</version>
+        <relativePath/>
     </parent>
 
-    <artifactId>openflowplugin-samples-parent</artifactId>
+    <groupId>org.opendaylight.openflowplugin</groupId>
+    <artifactId>openflowplugin-samples-aggregator</artifactId>
+    <version>0.10.0-SNAPSHOT</version>
     <packaging>pom</packaging>
+
+    <properties>
+        <maven.deploy.skip>true</maven.deploy.skip>
+        <maven.install.skip>true</maven.install.skip>
+    </properties>
+
     <modules>
         <module>learning-switch</module>
         <module>sample-consumer</module>