Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
| 6 | <parent> |
| 7 | <groupId>org.onap.ccsdk.parent</groupId> |
| 8 | <artifactId>binding-parent</artifactId> |
Timoney, Dan (dt5972) | 52a06ce | 2018-06-06 13:56:45 -0400 | [diff] [blame] | 9 | <version>1.1.0-SNAPSHOT</version> |
Timoney, Dan (dt5972) | 4caeb14 | 2018-03-02 13:10:30 -0500 | [diff] [blame] | 10 | <relativePath /> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 11 | </parent> |
| 12 | |
| 13 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 14 | <artifactId>sql-resource-provider</artifactId> |
Timoney, Dan (dt5972) | 52a06ce | 2018-06-06 13:56:45 -0400 | [diff] [blame] | 15 | <version>0.3.0-SNAPSHOT</version> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 16 | <packaging>bundle</packaging> |
| 17 | |
| 18 | <name>ccsdk-sli-adaptors :: sql-resource :: ${project.artifactId}</name> |
| 19 | <url>http://maven.apache.org</url> |
| 20 | |
| 21 | <properties> |
| 22 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 23 | </properties> |
| 24 | |
| 25 | <dependencies> |
| 26 | <dependency> |
| 27 | <groupId>junit</groupId> |
| 28 | <artifactId>junit</artifactId> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 29 | <scope>test</scope> |
| 30 | </dependency> |
Dan Timoney | 4d02e5b | 2017-09-19 19:06:17 -0400 | [diff] [blame] | 31 | <dependency> |
| 32 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 33 | <artifactId>mariaDB4j</artifactId> |
| 34 | <version>2.2.3</version> |
| 35 | <scope>test</scope> |
| 36 | </dependency> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 37 | <dependency> |
| 38 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 39 | <artifactId>sli-common</artifactId> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 40 | <scope>compile</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 44 | <artifactId>sli-provider</artifactId> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 45 | <scope>compile</scope> |
| 46 | </dependency> |
Timoney, Dan (dt5972) | be72a3c | 2018-06-15 18:25:23 -0400 | [diff] [blame^] | 47 | |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 48 | <dependency> |
| 49 | <groupId>org.slf4j</groupId> |
| 50 | <artifactId>slf4j-api</artifactId> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 51 | </dependency> |
Rich Tabedzki | 4c9667e | 2018-03-09 04:28:34 +0000 | [diff] [blame] | 52 | <dependency> |
| 53 | <groupId>org.slf4j</groupId> |
| 54 | <artifactId>jcl-over-slf4j</artifactId> |
Rich Tabedzki | 4c9667e | 2018-03-09 04:28:34 +0000 | [diff] [blame] | 55 | </dependency> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 56 | <dependency> |
| 57 | <groupId>org.slf4j</groupId> |
| 58 | <artifactId>slf4j-simple</artifactId> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 59 | <scope>compile</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 63 | <artifactId>dblib-provider</artifactId> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 64 | </dependency> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 65 | |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 66 | </dependencies> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 67 | |
| 68 | |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 69 | </project> |