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> |
| 29 | <version>${junit.version}</version> |
| 30 | <scope>test</scope> |
| 31 | </dependency> |
Dan Timoney | 4d02e5b | 2017-09-19 19:06:17 -0400 | [diff] [blame] | 32 | <dependency> |
| 33 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 34 | <artifactId>mariaDB4j</artifactId> |
| 35 | <version>2.2.3</version> |
| 36 | <scope>test</scope> |
| 37 | </dependency> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 38 | <dependency> |
| 39 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 40 | <artifactId>sli-common</artifactId> |
| 41 | <version>${sdnctl.sli.version}</version> |
| 42 | <scope>compile</scope> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 46 | <artifactId>sli-provider</artifactId> |
| 47 | <version>${sdnctl.sli.version}</version> |
| 48 | <scope>compile</scope> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>equinoxSDK381</groupId> |
| 52 | <artifactId>org.eclipse.osgi</artifactId> |
Rich Tabedzki | 4c9667e | 2018-03-09 04:28:34 +0000 | [diff] [blame] | 53 | <version>${equinox.osgi.version}</version> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.slf4j</groupId> |
| 57 | <artifactId>slf4j-api</artifactId> |
| 58 | <version>${slf4j.version}</version> |
| 59 | </dependency> |
Rich Tabedzki | 4c9667e | 2018-03-09 04:28:34 +0000 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>org.slf4j</groupId> |
| 62 | <artifactId>jcl-over-slf4j</artifactId> |
| 63 | <version>${slf4j.version}</version> |
| 64 | </dependency> |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 65 | <dependency> |
| 66 | <groupId>org.slf4j</groupId> |
| 67 | <artifactId>slf4j-simple</artifactId> |
| 68 | <version>${slf4j.version}</version> |
| 69 | <scope>compile</scope> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 73 | <artifactId>dblib-provider</artifactId> |
| 74 | <version>${sdnctl.dblib.version}</version> |
| 75 | </dependency> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 76 | |
Dan Timoney | 8a3f1ea | 2018-02-16 17:12:41 -0500 | [diff] [blame] | 77 | </dependencies> |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 78 | |
| 79 | |
Dan Timoney | 5363b27 | 2017-07-18 20:23:07 -0400 | [diff] [blame] | 80 | </project> |