diff options
author | Dan Timoney <dtimoney@att.com> | 2023-06-13 12:32:29 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2023-06-13 12:32:29 -0400 |
commit | fa9912503ad15734452a806cef08cc59a1a77498 (patch) | |
tree | 0e1d909272f67234d1edc4098b6a53d86772d18b /northbound | |
parent | 21e0eb9b300bb0d764e39fb9c914fd0d82aee456 (diff) |
Support HTTP PATCH in AAI adaptor
Update AAI adaptor to send proper HTTP header to use HTTP PATCH
Issue-ID: CCSDK-3908
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: I231c19127789e66a65d73b6d58386079e618a515
Diffstat (limited to 'northbound')
-rwxr-xr-x | northbound/dmaap-listener/pom.xml | 15 | ||||
-rwxr-xr-x | northbound/ueb-listener/pom.xml | 15 |
2 files changed, 30 insertions, 0 deletions
diff --git a/northbound/dmaap-listener/pom.xml b/northbound/dmaap-listener/pom.xml index 406290296..5dfd27035 100755 --- a/northbound/dmaap-listener/pom.xml +++ b/northbound/dmaap-listener/pom.xml @@ -28,6 +28,21 @@ </properties> + <!-- Tests require MariaDB4j , which does not currently support ARM64 --> + <profiles> + <profile> + <id>disable-test-on-ARM64</id> + <activation> + <os> + <arch>aarch64</arch> + </os> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> + </profiles> + <dependencyManagement> <dependencies> <dependency> diff --git a/northbound/ueb-listener/pom.xml b/northbound/ueb-listener/pom.xml index 7a34f5c1c..709bbd612 100755 --- a/northbound/ueb-listener/pom.xml +++ b/northbound/ueb-listener/pom.xml @@ -25,6 +25,21 @@ <sdc.tosca.version>1.6.5</sdc.tosca.version> </properties> + <!-- Tests require MariaDB4j , which does not currently support ARM64 --> + <profiles> + <profile> + <id>disable-test-on-ARM64</id> + <activation> + <os> + <arch>aarch64</arch> + </os> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> + </profiles> + <dependencyManagement> <dependencies> <dependency> |