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 /core/dblib | |
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 'core/dblib')
-rwxr-xr-x | core/dblib/provider/pom.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/dblib/provider/pom.xml b/core/dblib/provider/pom.xml index e9b471ce6..11cbb411d 100755 --- a/core/dblib/provider/pom.xml +++ b/core/dblib/provider/pom.xml @@ -16,6 +16,21 @@ <name>ccsdk-sli-core :: ${project.artifactId}</name> + <!-- 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> + <dependencies> <dependency> <groupId>junit</groupId> |