From c74f6af8d7b72eeeee7ceedbf82fc8cecef1ae3d Mon Sep 17 00:00:00 2001 From: "Timoney, Dan (dt5972)" Date: Thu, 11 Jul 2019 08:47:49 -0400 Subject: Update to Neon Apply code updates to port to Neon. Change-Id: I159309494ec64209d9fa23fc515643f1e31fe146 Issue-ID: CCSDK-1389 Signed-off-by: Timoney, Dan (dt5972) --- .../adaptors/data-adaptor-provider/pom.xml | 5 +- .../OSGI-INF/blueprint/impl-blueprint.xml | 70 ++++++++++++++++++++++ blueprints-processor/adaptors/pom.xml | 4 +- .../adaptors/rest-adaptor-provider/pom.xml | 47 ++++++++++++++- .../OSGI-INF/blueprint/impl-blueprint.xml | 32 ++++++++++ .../features/ccsdk-blueprints-processor/pom.xml | 4 +- .../features/features-blueprints-processor/pom.xml | 4 +- blueprints-processor/features/pom.xml | 4 +- blueprints-processor/installer/pom.xml | 4 +- .../plugin/assignment-provider/pom.xml | 37 +++++++++++- .../OSGI-INF/blueprint/impl-blueprint.xml | 63 +++++++++++++++++++ .../plugin/generator-provider/pom.xml | 40 +++++++++++-- .../OSGI-INF/blueprint/impl-blueprint.xml | 49 +++++++++++++++ blueprints-processor/plugin/model-provider/pom.xml | 42 ++++++++++++- .../OSGI-INF/blueprint/impl-blueprint.xml | 68 +++++++++++++++++++++ blueprints-processor/plugin/pom.xml | 4 +- blueprints-processor/pom.xml | 4 +- 17 files changed, 449 insertions(+), 32 deletions(-) create mode 100644 blueprints-processor/adaptors/data-adaptor-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml create mode 100644 blueprints-processor/adaptors/rest-adaptor-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml create mode 100644 blueprints-processor/plugin/assignment-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml create mode 100644 blueprints-processor/plugin/generator-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml create mode 100644 blueprints-processor/plugin/model-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml (limited to 'blueprints-processor') diff --git a/blueprints-processor/adaptors/data-adaptor-provider/pom.xml b/blueprints-processor/adaptors/data-adaptor-provider/pom.xml index 61bfea93d..9937826a2 100644 --- a/blueprints-processor/adaptors/data-adaptor-provider/pom.xml +++ b/blueprints-processor/adaptors/data-adaptor-provider/pom.xml @@ -13,12 +13,12 @@ org.onap.ccsdk.parent binding-parent - 1.3.3-SNAPSHOT + 1.4.0-SNAPSHOT org.onap.ccsdk.features - 0.5.2-SNAPSHOT + 0.6.0-SNAPSHOT blueprints-data-adaptor-provider bundle Blueprints Data Adaptor - Provider @@ -96,7 +96,6 @@ org.apache.felix maven-bundle-plugin - ${maven.bundle.version} true diff --git a/blueprints-processor/adaptors/data-adaptor-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml b/blueprints-processor/adaptors/data-adaptor-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml new file mode 100644 index 000000000..76459d51d --- /dev/null +++ b/blueprints-processor/adaptors/data-adaptor-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/blueprints-processor/adaptors/pom.xml b/blueprints-processor/adaptors/pom.xml index 9f1c2b0d9..9e081a5a3 100644 --- a/blueprints-processor/adaptors/pom.xml +++ b/blueprints-processor/adaptors/pom.xml @@ -20,12 +20,12 @@ org.onap.ccsdk.parent odlparent-lite - 1.3.3-SNAPSHOT + 1.4.0-SNAPSHOT org.onap.ccsdk.features - 0.5.2-SNAPSHOT + 0.6.0-SNAPSHOT 4.0.0 pom blueprints-processor-adaptors diff --git a/blueprints-processor/adaptors/rest-adaptor-provider/pom.xml b/blueprints-processor/adaptors/rest-adaptor-provider/pom.xml index 9232e0c10..f7effc4b8 100644 --- a/blueprints-processor/adaptors/rest-adaptor-provider/pom.xml +++ b/blueprints-processor/adaptors/rest-adaptor-provider/pom.xml @@ -21,12 +21,12 @@ org.onap.ccsdk.parent binding-parent - 1.3.3-SNAPSHOT + 1.4.0-SNAPSHOT org.onap.ccsdk.features - 0.5.2-SNAPSHOT + 0.6.0-SNAPSHOT blueprints-rest-adaptor-provider bundle Blueprints Rest Adaptor - Provider @@ -71,6 +71,48 @@ junit test + + org.powermock + powermock-api-mockito + 1.6.4 + test + + + org.javassist + javassist + 3.21.0-GA + test + + + org.mockito + mockito-core + 1.10.19 + test + + + org.powermock + powermock-module-junit4 + 1.6.4 + test + + + org.powermock + powermock-api-support + 1.6.4 + test + + + org.powermock + powermock-reflect + 1.6.4 + test + + + org.powermock + powermock-core + 1.6.4 + test + @@ -85,7 +127,6 @@ org.apache.felix maven-bundle-plugin - ${maven.bundle.version} true diff --git a/blueprints-processor/adaptors/rest-adaptor-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml b/blueprints-processor/adaptors/rest-adaptor-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml new file mode 100644 index 000000000..8788f6482 --- /dev/null +++ b/blueprints-processor/adaptors/rest-adaptor-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + diff --git a/blueprints-processor/features/ccsdk-blueprints-processor/pom.xml b/blueprints-processor/features/ccsdk-blueprints-processor/pom.xml index 40daabbf3..f7ec2c36a 100644 --- a/blueprints-processor/features/ccsdk-blueprints-processor/pom.xml +++ b/blueprints-processor/features/ccsdk-blueprints-processor/pom.xml @@ -20,13 +20,13 @@ org.onap.ccsdk.parent single-feature-parent - 1.3.3-SNAPSHOT + 1.4.0-SNAPSHOT org.onap.ccsdk.features ccsdk-blueprints-processor - 0.5.2-SNAPSHOT + 0.6.0-SNAPSHOT feature Blueprints Processor :: Features :: ${project.artifactId} diff --git a/blueprints-processor/features/features-blueprints-processor/pom.xml b/blueprints-processor/features/features-blueprints-processor/pom.xml index 49d83cc2a..c01eeab3b 100755 --- a/blueprints-processor/features/features-blueprints-processor/pom.xml +++ b/blueprints-processor/features/features-blueprints-processor/pom.xml @@ -20,13 +20,13 @@ org.onap.ccsdk.parent feature-repo-parent - 1.3.3-SNAPSHOT + 1.4.0-SNAPSHOT org.onap.ccsdk.features features-blueprints-processor - 0.5.2-SNAPSHOT + 0.6.0-SNAPSHOT feature Blueprints Processor :: CCSDK Features :: ${project.artifactId} diff --git a/blueprints-processor/features/pom.xml b/blueprints-processor/features/pom.xml index 3ec62da1a..7dbbeb6f8 100755 --- a/blueprints-processor/features/pom.xml +++ b/blueprints-processor/features/pom.xml @@ -20,13 +20,13 @@ org.onap.ccsdk.parent odlparent-lite - 1.3.3-SNAPSHOT + 1.4.0-SNAPSHOT org.onap.ccsdk.features blueprints-processor-features - 0.5.2-SNAPSHOT + 0.6.0-SNAPSHOT pom Blueprints Processor :: Features aggregator :: ${project.artifactId} diff --git a/blueprints-processor/installer/pom.xml b/blueprints-processor/installer/pom.xml index 6b4aeb89f..fb662d575 100644 --- a/blueprints-processor/installer/pom.xml +++ b/blueprints-processor/installer/pom.xml @@ -20,13 +20,13 @@ org.onap.ccsdk.parent odlparent-lite - 1.3.3-SNAPSHOT + 1.4.0-SNAPSHOT org.onap.ccsdk.features blueprints-processor-installer - 0.5.2-SNAPSHOT + 0.6.0-SNAPSHOT pom Blueprints Processor :: ${project.artifactId} diff --git a/blueprints-processor/plugin/assignment-provider/pom.xml b/blueprints-processor/plugin/assignment-provider/pom.xml index ff9bcda88..1b7f46ea3 100644 --- a/blueprints-processor/plugin/assignment-provider/pom.xml +++ b/blueprints-processor/plugin/assignment-provider/pom.xml @@ -21,12 +21,12 @@ org.onap.ccsdk.parent binding-parent - 1.3.3-SNAPSHOT + 1.4.0-SNAPSHOT org.onap.ccsdk.features - 0.5.2-SNAPSHOT + 0.6.0-SNAPSHOT blueprints-assignment-provider bundle Blueprints Assignment - Provider @@ -71,11 +71,43 @@ org.powermock powermock-api-mockito + 1.6.4 + test + + + org.javassist + javassist + 3.21.0-GA + test + + + org.mockito + mockito-core + 1.10.19 test org.powermock powermock-module-junit4 + 1.6.4 + test + + + org.powermock + powermock-api-support + 1.6.4 + test + + + org.powermock + powermock-reflect + 1.6.4 + test + + + org.powermock + powermock-core + 1.6.4 test @@ -92,7 +124,6 @@ org.apache.felix maven-bundle-plugin - ${maven.bundle.version} true diff --git a/blueprints-processor/plugin/assignment-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml b/blueprints-processor/plugin/assignment-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml new file mode 100644 index 000000000..f15429dfe --- /dev/null +++ b/blueprints-processor/plugin/assignment-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/blueprints-processor/plugin/generator-provider/pom.xml b/blueprints-processor/plugin/generator-provider/pom.xml index b4f5873c7..6917660b3 100644 --- a/blueprints-processor/plugin/generator-provider/pom.xml +++ b/blueprints-processor/plugin/generator-provider/pom.xml @@ -21,12 +21,12 @@ org.onap.ccsdk.parent binding-parent - 1.3.3-SNAPSHOT + 1.4.0-SNAPSHOT org.onap.ccsdk.features - 0.5.2-SNAPSHOT + 0.6.0-SNAPSHOT blueprints-generator-provider bundle Blueprints Generator - Provider @@ -70,19 +70,48 @@ org.powermock powermock-api-mockito - 1.6.6 + 1.6.4 + test + + + org.javassist + javassist + 3.21.0-GA + test + + + org.mockito + mockito-core + 1.10.19 test org.powermock powermock-module-junit4 - 1.6.6 + 1.6.4 + test + + + org.powermock + powermock-api-support + 1.6.4 + test + + + org.powermock + powermock-reflect + 1.6.4 + test + + + org.powermock + powermock-core + 1.6.4 test junit junit - ${junit.version} test @@ -92,7 +121,6 @@ org.apache.felix maven-bundle-plugin - ${maven.bundle.version} true diff --git a/blueprints-processor/plugin/generator-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml b/blueprints-processor/plugin/generator-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml new file mode 100644 index 000000000..78cb28189 --- /dev/null +++ b/blueprints-processor/plugin/generator-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/blueprints-processor/plugin/model-provider/pom.xml b/blueprints-processor/plugin/model-provider/pom.xml index 6cf25f473..0f9c9430d 100644 --- a/blueprints-processor/plugin/model-provider/pom.xml +++ b/blueprints-processor/plugin/model-provider/pom.xml @@ -21,12 +21,12 @@ org.onap.ccsdk.parent binding-parent - 1.3.3-SNAPSHOT + 1.4.0-SNAPSHOT org.onap.ccsdk.features - 0.5.2-SNAPSHOT + 0.6.0-SNAPSHOT blueprints-model-provider bundle Blueprints Model - Provider @@ -66,6 +66,43 @@ org.powermock powermock-api-mockito + 1.6.4 + test + + + org.javassist + javassist + 3.21.0-GA + test + + + org.mockito + mockito-core + 1.10.19 + test + + + org.powermock + powermock-module-junit4 + 1.6.4 + test + + + org.powermock + powermock-api-support + 1.6.4 + test + + + org.powermock + powermock-reflect + 1.6.4 + test + + + org.powermock + powermock-core + 1.6.4 test @@ -106,7 +143,6 @@ org.apache.felix maven-bundle-plugin - ${maven.bundle.version} true diff --git a/blueprints-processor/plugin/model-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml b/blueprints-processor/plugin/model-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml new file mode 100644 index 000000000..5a07f94c6 --- /dev/null +++ b/blueprints-processor/plugin/model-provider/src/main/resources/OSGI-INF/blueprint/impl-blueprint.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/blueprints-processor/plugin/pom.xml b/blueprints-processor/plugin/pom.xml index 634b370d3..b4cea13bd 100644 --- a/blueprints-processor/plugin/pom.xml +++ b/blueprints-processor/plugin/pom.xml @@ -21,11 +21,11 @@ org.onap.ccsdk.parent odlparent-lite - 1.3.3-SNAPSHOT + 1.4.0-SNAPSHOT - 0.5.2-SNAPSHOT + 0.6.0-SNAPSHOT blueprints-processor-plugin org.onap.ccsdk.features pom diff --git a/blueprints-processor/pom.xml b/blueprints-processor/pom.xml index 0878f88c8..2b2fde6df 100644 --- a/blueprints-processor/pom.xml +++ b/blueprints-processor/pom.xml @@ -21,13 +21,13 @@ org.onap.ccsdk.parent odlparent-lite - 1.3.3-SNAPSHOT + 1.4.0-SNAPSHOT org.onap.ccsdk.features blueprints-processor - 0.5.2-SNAPSHOT + 0.6.0-SNAPSHOT pom Blueprints Processor Module -- cgit 1.2.3-korg