summaryrefslogtreecommitdiffstats
path: root/sdnr/wt/data-provider/setup/pom.xml
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2023-08-10 20:46:56 +0000
committerGerrit Code Review <gerrit@onap.org>2023-08-10 20:46:56 +0000
commit8f708e94e2798d42f1b107828c910304bc5cac6b (patch)
treeb82972b8fe8087a0c5e6c6c0b91c84d46e108ed4 /sdnr/wt/data-provider/setup/pom.xml
parentfad3167f42d585e3144547db4c6dd7d00ea7b18a (diff)
parentc35ad79f3939eebf531f477d62755221789bca12 (diff)
Merge "Update features for Argon release"
Diffstat (limited to 'sdnr/wt/data-provider/setup/pom.xml')
-rw-r--r--sdnr/wt/data-provider/setup/pom.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/sdnr/wt/data-provider/setup/pom.xml b/sdnr/wt/data-provider/setup/pom.xml
index c0d8afe72..c75b31a1b 100644
--- a/sdnr/wt/data-provider/setup/pom.xml
+++ b/sdnr/wt/data-provider/setup/pom.xml
@@ -28,7 +28,7 @@
<parent>
<groupId>org.onap.ccsdk.parent</groupId>
<artifactId>binding-parent</artifactId>
- <version>2.5.4</version>
+ <version>2.6.0</version>
<relativePath/>
</parent>
@@ -102,6 +102,20 @@
<artifactId>javax.servlet-api</artifactId>
</dependency>
</dependencies>
+ <!-- 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>
<build>
<plugins>
<plugin>