Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | 21ec655 | 2019-01-08 12:14:12 -0500 | [diff] [blame] | 2 | <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 Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <parent> |
Dan Timoney | 5de8196 | 2021-01-26 13:15:47 -0500 | [diff] [blame] | 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>binding-parent</artifactId> |
Dan Timoney | 69baaeb | 2023-06-22 16:05:50 -0400 | [diff] [blame] | 8 | <version>2.6.0</version> |
Dan Timoney | 5de8196 | 2021-01-26 13:15:47 -0500 | [diff] [blame] | 9 | <relativePath/> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 10 | </parent> |
| 11 | |
| 12 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 13 | <artifactId>sql-resource-provider</artifactId> |
Dan Timoney | c6bb986 | 2023-08-09 12:11:18 -0400 | [diff] [blame^] | 14 | <version>1.7.1-SNAPSHOT</version> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 15 | <packaging>bundle</packaging> |
| 16 | |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 17 | <name>ccsdk-sli-adaptors :: ${project.artifactId}</name> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 18 | <url>http://maven.apache.org</url> |
| 19 | |
| 20 | <properties> |
| 21 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 22 | </properties> |
| 23 | |
Dan Timoney | fa99125 | 2023-06-13 12:32:29 -0400 | [diff] [blame] | 24 | <!-- 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) | f200a72 | 2019-01-03 16:24:22 -0500 | [diff] [blame] | 40 | <dependencyManagement> |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 41 | <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) | f200a72 | 2019-01-03 16:24:22 -0500 | [diff] [blame] | 50 | </dependencyManagement> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 51 | <dependencies> |
| 52 | <dependency> |
| 53 | <groupId>junit</groupId> |
| 54 | <artifactId>junit</artifactId> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 55 | <scope>test</scope> |
| 56 | </dependency> |
Dan Timoney | 4d02e5b | 2017-09-19 19:06:17 -0400 | [diff] [blame] | 57 | <dependency> |
| 58 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 59 | <artifactId>mariaDB4j</artifactId> |
| 60 | <version>2.2.3</version> |
| 61 | <scope>test</scope> |
| 62 | </dependency> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 65 | <artifactId>sli-common</artifactId> |
Smokowski, Kevin (ks6305) | f62f418 | 2018-11-06 16:34:46 +0000 | [diff] [blame] | 66 | <scope>provided</scope> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 70 | <artifactId>sli-provider</artifactId> |
Smokowski, Kevin (ks6305) | f62f418 | 2018-11-06 16:34:46 +0000 | [diff] [blame] | 71 | <scope>provided</scope> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 72 | </dependency> |
Timoney, Dan (dt5972) | be72a3c | 2018-06-15 18:25:23 -0400 | [diff] [blame] | 73 | |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 74 | <dependency> |
| 75 | <groupId>org.slf4j</groupId> |
| 76 | <artifactId>slf4j-api</artifactId> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 77 | </dependency> |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>org.slf4j</groupId> |
| 80 | <artifactId>jcl-over-slf4j</artifactId> |
| 81 | </dependency> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 82 | <dependency> |
| 83 | <groupId>org.slf4j</groupId> |
| 84 | <artifactId>slf4j-simple</artifactId> |
Singal, Kapil (ks220y) | bab5ed7 | 2021-07-08 22:15:12 -0400 | [diff] [blame] | 85 | <scope>test</scope> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 89 | <artifactId>dblib-provider</artifactId> |
Smokowski, Kevin (ks6305) | f62f418 | 2018-11-06 16:34:46 +0000 | [diff] [blame] | 90 | <scope>provided</scope> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 91 | </dependency> |
Singal, Kapil (ks220y) | 94f4b9b | 2021-03-02 20:00:49 -0500 | [diff] [blame] | 92 | <dependency> |
| 93 | <groupId>org.osgi</groupId> |
| 94 | <artifactId>org.osgi.core</artifactId> |
| 95 | <scope>provided</scope> |
| 96 | </dependency> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 97 | </dependencies> |
Dan Timoney | 72aef3a | 2023-01-31 08:15:34 -0500 | [diff] [blame] | 98 | |
| 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 Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 112 | </project> |