diff options
author | Dan Timoney <dtimoney@att.com> | 2023-06-13 12:32:29 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2023-06-13 16:33:17 +0000 |
commit | 5840ba40343542f70fe141dda6c98e10ba088e96 (patch) | |
tree | d86ef272e3c1dc06d108b63b0458bc3ca15b2eb8 /northbound | |
parent | 68568a1b2430bf9fffe4f4dfd39fdbcc201b4a33 (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 4e360e913..4b815071a 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 a12172109..f7139cb46 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> |