Turn libraries/pom.xml into an aggregator 87/85387/2
authorRobert Varga <robert.varga@pantheon.tech>
Fri, 25 Oct 2019 11:44:24 +0000 (13:44 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Wed, 6 Nov 2019 16:11:02 +0000 (17:11 +0100)
This is a pure aggregator, not adding anything beneficial on top
of openflowplugin-parent. Turn it into an uninstalled aggregator,
shaving 3 seconds from the build.

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

index e1cd411f839a03686eea1faea76c0f4a87e133c4..f2ed462850077d1b1efafab7e332e7762de44459 100644 (file)
@@ -4,8 +4,9 @@
 
   <parent>
     <groupId>org.opendaylight.openflowplugin</groupId>
-    <artifactId>libraries</artifactId>
+    <artifactId>openflowplugin-parent</artifactId>
     <version>0.10.0-SNAPSHOT</version>
+    <relativePath>../../parent</relativePath>
   </parent>
 
   <groupId>org.opendaylight.openflowplugin.libraries</groupId>
index 8d28db16622c3c337f511db252722a05e77925db..7de94b32c0100c641ce314181a525fa352d23974 100644 (file)
@@ -3,32 +3,21 @@
     <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>libraries</artifactId>
-    <name>libraries</name>
-    <url>http://maven.apache.org</url>
+    <groupId>org.opendaylight.openflowplugin</groupId>
+    <artifactId>libraries-aggregator</artifactId>
+    <version>0.10.0-SNAPSHOT</version>
     <packaging>pom</packaging>
 
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-            </plugin>
-        </plugins>
-    </build>
-
-    <scm>
-        <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
-        <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
-        <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
-        <tag>HEAD</tag>
-    </scm>
+    <properties>
+        <maven.deploy.skip>true</maven.deploy.skip>
+        <maven.install.skip>true</maven.install.skip>
+    </properties>
 
     <modules>
         <module>liblldp</module>