From bfdebc4f870121f188313e2b7175a29c885309f3 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Mon, 27 Apr 2020 11:34:31 +0200 Subject: [PATCH] Cleanup aggregator poms We do not want expose our repository layout to outside world, hence cleanup aggregators so they are just that and are not installed. Change-Id: Ib9ec89e46ed4a966a0750778f6067096ebbb8a14 Signed-off-by: Robert Varga --- benchmark/pom.xml | 10 ++- .../netty-event-executor-config/pom.xml | 11 ++- .../config/netty-threadgroup-config/pom.xml | 13 ++-- .../config/netty-timer-config/pom.xml | 11 ++- opendaylight/config/pom.xml | 27 +++---- .../config/threadpool-config-api/pom.xml | 11 ++- .../config/threadpool-config-impl/pom.xml | 23 +++++- opendaylight/md-sal/pom.xml | 14 ++-- .../clustering-test-app/configuration/pom.xml | 78 ++++++++++--------- .../samples/clustering-test-app/pom.xml | 30 ++++--- opendaylight/md-sal/samples/pom.xml | 22 +++--- opendaylight/model/pom.xml | 13 ++-- pom.xml | 11 +-- 13 files changed, 153 insertions(+), 121 deletions(-) diff --git a/benchmark/pom.xml b/benchmark/pom.xml index 7b92fd4c3d..860767b5ff 100644 --- a/benchmark/pom.xml +++ b/benchmark/pom.xml @@ -6,18 +6,24 @@ terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html --> + 4.0.0 org.opendaylight.odlparent odlparent-lite 7.0.1 + org.opendaylight.controller benchmark-aggregator 1.10.0-SNAPSHOT - ${project.artifactId} pom - 4.0.0 + + + true + true + + api dsbenchmark diff --git a/opendaylight/config/netty-event-executor-config/pom.xml b/opendaylight/config/netty-event-executor-config/pom.xml index f7ef225d88..0705912208 100644 --- a/opendaylight/config/netty-event-executor-config/pom.xml +++ b/opendaylight/config/netty-event-executor-config/pom.xml @@ -3,12 +3,15 @@ 4.0.0 - org.opendaylight.controller - config-subsystem - 0.13.0-SNAPSHOT - ../ + org.opendaylight.odlparent + bundle-parent + 7.0.1 + + + org.opendaylight.controller netty-event-executor-config + 0.13.0-SNAPSHOT bundle ${project.artifactId} Configuration Wrapper around netty's event executor diff --git a/opendaylight/config/netty-threadgroup-config/pom.xml b/opendaylight/config/netty-threadgroup-config/pom.xml index 318b797caf..51c4bac3ae 100644 --- a/opendaylight/config/netty-threadgroup-config/pom.xml +++ b/opendaylight/config/netty-threadgroup-config/pom.xml @@ -1,16 +1,17 @@ - 4.0.0 - - org.opendaylight.controller - config-subsystem - 0.13.0-SNAPSHOT - ../ + org.opendaylight.odlparent + bundle-parent + 7.0.1 + + + org.opendaylight.controller netty-threadgroup-config + 0.13.0-SNAPSHOT bundle ${project.artifactId} Configuration Wrapper around netty's event group diff --git a/opendaylight/config/netty-timer-config/pom.xml b/opendaylight/config/netty-timer-config/pom.xml index e94753a1b7..a8fd993313 100644 --- a/opendaylight/config/netty-timer-config/pom.xml +++ b/opendaylight/config/netty-timer-config/pom.xml @@ -3,12 +3,15 @@ 4.0.0 - org.opendaylight.controller - config-subsystem - 0.13.0-SNAPSHOT - ../ + org.opendaylight.odlparent + bundle-parent + 7.0.1 + + + org.opendaylight.controller netty-timer-config + 0.13.0-SNAPSHOT bundle ${project.artifactId} Configuration Wrapper around netty's timer diff --git a/opendaylight/config/pom.xml b/opendaylight/config/pom.xml index c730ae6b82..28c8f3c98b 100644 --- a/opendaylight/config/pom.xml +++ b/opendaylight/config/pom.xml @@ -1,19 +1,22 @@ 4.0.0 - - org.opendaylight.mdsal - binding-parent - 6.0.0 + org.opendaylight.odlparent + odlparent-lite + 7.0.1 org.opendaylight.controller - config-subsystem + config-aggregator 0.13.0-SNAPSHOT pom - ${project.artifactId} + + + true + true + threadpool-config-api @@ -22,16 +25,4 @@ netty-event-executor-config netty-timer-config - - - - - org.opendaylight.controller - controller-artifacts - 1.12.0-SNAPSHOT - pom - import - - - diff --git a/opendaylight/config/threadpool-config-api/pom.xml b/opendaylight/config/threadpool-config-api/pom.xml index ac204f8caf..0d6eb5ca0f 100644 --- a/opendaylight/config/threadpool-config-api/pom.xml +++ b/opendaylight/config/threadpool-config-api/pom.xml @@ -3,12 +3,15 @@ 4.0.0 - org.opendaylight.controller - config-subsystem - 0.13.0-SNAPSHOT - ../ + org.opendaylight.odlparent + bundle-parent + 7.0.1 + + + org.opendaylight.controller threadpool-config-api + 0.13.0-SNAPSHOT bundle ${project.artifactId} diff --git a/opendaylight/config/threadpool-config-impl/pom.xml b/opendaylight/config/threadpool-config-impl/pom.xml index c512f4071b..39f4e21604 100644 --- a/opendaylight/config/threadpool-config-impl/pom.xml +++ b/opendaylight/config/threadpool-config-impl/pom.xml @@ -3,15 +3,30 @@ 4.0.0 - org.opendaylight.controller - config-subsystem - 0.13.0-SNAPSHOT - ../ + org.opendaylight.odlparent + bundle-parent + 7.0.1 + + + org.opendaylight.controller threadpool-config-impl + 0.13.0-SNAPSHOT bundle ${project.artifactId} + + + + org.opendaylight.controller + controller-artifacts + 1.12.0-SNAPSHOT + pom + import + + + + ${project.groupId} diff --git a/opendaylight/md-sal/pom.xml b/opendaylight/md-sal/pom.xml index fedde47ff3..ac63c3ef45 100644 --- a/opendaylight/md-sal/pom.xml +++ b/opendaylight/md-sal/pom.xml @@ -10,10 +10,15 @@ org.opendaylight.controller - sal-parent + mdsal-aggregator 1.12.0-SNAPSHOT pom + + true + true + + parent @@ -62,13 +67,6 @@ mdsal-it-parent - - scm:git:http://git.opendaylight.org/gerrit/controller.git - scm:git:ssh://git.opendaylight.org:29418/controller.git - HEAD - https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL - - benchmarks diff --git a/opendaylight/md-sal/samples/clustering-test-app/configuration/pom.xml b/opendaylight/md-sal/samples/clustering-test-app/configuration/pom.xml index 4810923796..bf063e361f 100644 --- a/opendaylight/md-sal/samples/clustering-test-app/configuration/pom.xml +++ b/opendaylight/md-sal/samples/clustering-test-app/configuration/pom.xml @@ -7,44 +7,48 @@ and is available at http://www.eclipse.org/legal/epl-v10.html --> - - 4.0.0 + 4.0.0 - clustering-it - org.opendaylight.controller.samples - 1.12.0-SNAPSHOT + org.opendaylight.odlparent + odlparent-lite + 7.0.1 + + + org.opendaylight.controller.samples clustering-it-config - jar - - - - org.codehaus.mojo - build-helper-maven-plugin - - - attach-artifacts - - attach-artifact - - package - - - - ${project.build.directory}/classes/initial/module-shards.conf - xml - testmoduleshardconf - - - ${project.build.directory}/classes/initial/modules.conf - xml - testmoduleconf - - - - - - - - + 1.12.0-SNAPSHOT + jar + + + + + org.codehaus.mojo + build-helper-maven-plugin + + + attach-artifacts + + attach-artifact + + package + + + + ${project.build.directory}/classes/initial/module-shards.conf + xml + testmoduleshardconf + + + ${project.build.directory}/classes/initial/modules.conf + xml + testmoduleconf + + + + + + + + diff --git a/opendaylight/md-sal/samples/clustering-test-app/pom.xml b/opendaylight/md-sal/samples/clustering-test-app/pom.xml index c960ea5721..2f903dbea6 100644 --- a/opendaylight/md-sal/samples/clustering-test-app/pom.xml +++ b/opendaylight/md-sal/samples/clustering-test-app/pom.xml @@ -1,16 +1,26 @@ - 4.0.0 + 4.0.0 - org.opendaylight.controller.samples - sal-samples - 1.12.0-SNAPSHOT + org.opendaylight.odlparent + odlparent-lite + 7.0.1 + - clustering-it + + org.opendaylight.controller.samples + clustering-test-app + 1.12.0-SNAPSHOT pom - - configuration - model - provider - + + + true + true + + + + configuration + model + provider + diff --git a/opendaylight/md-sal/samples/pom.xml b/opendaylight/md-sal/samples/pom.xml index 07ae31fdbb..3b896e9a26 100644 --- a/opendaylight/md-sal/samples/pom.xml +++ b/opendaylight/md-sal/samples/pom.xml @@ -2,15 +2,22 @@ 4.0.0 - org.opendaylight.controller - sal-parent - 1.12.0-SNAPSHOT + org.opendaylight.odlparent + odlparent-lite + 7.0.1 + org.opendaylight.controller.samples - sal-samples + samples-aggregator + 1.12.0-SNAPSHOT pom + + true + true + + toaster toaster-consumer @@ -18,11 +25,4 @@ clustering-test-app toaster-it - - scm:git:http://git.opendaylight.org/gerrit/controller.git - scm:git:ssh://git.opendaylight.org:29418/controller.git - HEAD - https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL - - diff --git a/opendaylight/model/pom.xml b/opendaylight/model/pom.xml index df8f0c78f5..3fb23ced22 100644 --- a/opendaylight/model/pom.xml +++ b/opendaylight/model/pom.xml @@ -8,7 +8,6 @@ and is available at http://www.eclipse.org/legal/epl-v10.html --> - 4.0.0 org.opendaylight.odlparent @@ -22,15 +21,13 @@ 1.12.0-SNAPSHOT pom + + true + true + + model-inventory model-topology - - - scm:git:http://git.opendaylight.org/gerrit/controller.git - scm:git:ssh://git.opendaylight.org:29418/controller.git - HEAD - https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL - diff --git a/pom.xml b/pom.xml index f7b8a4489f..73d519fc28 100644 --- a/pom.xml +++ b/pom.xml @@ -7,6 +7,7 @@ 7.0.1 + org.opendaylight.controller releasepom 0.12.0-SNAPSHOT @@ -14,6 +15,11 @@ controller + + true + true + + artifacts @@ -38,11 +44,6 @@ docs - - true - true - - sonar-jacoco-aggregate -- 2.36.6