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/dmaap-listener | |
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/dmaap-listener')
-rwxr-xr-x | northbound/dmaap-listener/pom.xml | 15 |
1 files changed, 15 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> |