blob: e8db3416c6b3e6cf6f4e23c22e229664174d506f [file] [log] [blame]
Dan Timoney5363b272017-07-18 20:23:07 -04001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)21ec6552019-01-08 12:14:12 -05002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Dan Timoney8a3f1ea2018-02-16 17:12:41 -05003 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
Dan Timoney5de81962021-01-26 13:15:47 -05006 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>binding-parent</artifactId>
Dan Timoney69baaeb2023-06-22 16:05:50 -04008 <version>2.6.0</version>
Dan Timoney5de81962021-01-26 13:15:47 -05009 <relativePath/>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050010 </parent>
11
12 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
13 <artifactId>sql-resource-provider</artifactId>
Dan Timoneyc6bb9862023-08-09 12:11:18 -040014 <version>1.7.1-SNAPSHOT</version>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050015 <packaging>bundle</packaging>
16
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050017 <name>ccsdk-sli-adaptors :: ${project.artifactId}</name>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050018 <url>http://maven.apache.org</url>
19
20 <properties>
21 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22 </properties>
23
Dan Timoneyfa991252023-06-13 12:32:29 -040024 <!-- Tests require MariaDB4j , which does not currently support ARM64 -->
25 <profiles>
26 <profile>
27 <id>disable-test-on-ARM64</id>
28 <activation>
29 <os>
30 <arch>aarch64</arch>
31 </os>
32 </activation>
33 <properties>
34 <skipTests>true</skipTests>
35 </properties>
36 </profile>
37 </profiles>
38
39
Timoney, Dan (dt5972)f200a722019-01-03 16:24:22 -050040 <dependencyManagement>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050041 <dependencies>
42 <dependency>
43 <groupId>org.onap.ccsdk.sli.core</groupId>
44 <artifactId>sli-core-artifacts</artifactId>
45 <version>${project.version}</version>
46 <type>pom</type>
47 <scope>import</scope>
48 </dependency>
49 </dependencies>
Timoney, Dan (dt5972)f200a722019-01-03 16:24:22 -050050 </dependencyManagement>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050051 <dependencies>
52 <dependency>
53 <groupId>junit</groupId>
54 <artifactId>junit</artifactId>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050055 <scope>test</scope>
56 </dependency>
Dan Timoney4d02e5b2017-09-19 19:06:17 -040057 <dependency>
58 <groupId>ch.vorburger.mariaDB4j</groupId>
59 <artifactId>mariaDB4j</artifactId>
60 <version>2.2.3</version>
61 <scope>test</scope>
62 </dependency>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050063 <dependency>
64 <groupId>org.onap.ccsdk.sli.core</groupId>
65 <artifactId>sli-common</artifactId>
Smokowski, Kevin (ks6305)f62f4182018-11-06 16:34:46 +000066 <scope>provided</scope>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050067 </dependency>
68 <dependency>
69 <groupId>org.onap.ccsdk.sli.core</groupId>
70 <artifactId>sli-provider</artifactId>
Smokowski, Kevin (ks6305)f62f4182018-11-06 16:34:46 +000071 <scope>provided</scope>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050072 </dependency>
Timoney, Dan (dt5972)be72a3c2018-06-15 18:25:23 -040073
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050074 <dependency>
75 <groupId>org.slf4j</groupId>
76 <artifactId>slf4j-api</artifactId>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050077 </dependency>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050078 <dependency>
79 <groupId>org.slf4j</groupId>
80 <artifactId>jcl-over-slf4j</artifactId>
81 </dependency>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050082 <dependency>
83 <groupId>org.slf4j</groupId>
84 <artifactId>slf4j-simple</artifactId>
Singal, Kapil (ks220y)bab5ed72021-07-08 22:15:12 -040085 <scope>test</scope>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050086 </dependency>
87 <dependency>
88 <groupId>org.onap.ccsdk.sli.core</groupId>
89 <artifactId>dblib-provider</artifactId>
Smokowski, Kevin (ks6305)f62f4182018-11-06 16:34:46 +000090 <scope>provided</scope>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050091 </dependency>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050092 <dependency>
93 <groupId>org.osgi</groupId>
94 <artifactId>org.osgi.core</artifactId>
95 <scope>provided</scope>
96 </dependency>
Dan Timoney8a3f1ea2018-02-16 17:12:41 -050097 </dependencies>
Dan Timoney72aef3a2023-01-31 08:15:34 -050098
99 <build>
100 <plugins>
101 <plugin>
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-surefire-plugin</artifactId>
104 <configuration>
105 <systemPropertyVariables>
106 <SDNC_CONFIG_DIR>${basedir}/src/test/resources</SDNC_CONFIG_DIR>
107 </systemPropertyVariables>
108 </configuration>
109 </plugin>
110 </plugins>
111 </build>
Dan Timoney5363b272017-07-18 20:23:07 -0400112</project>