Remove incorrect dblib ref in feature.xml

Generated feature.xml contained unnecessary reference to
dblib-provider with wrong version.  Suppressed by
explicitly declaring dblib-provider in features/pom.xml with
scope 'provided'.

Change-Id: I34571194fca3c24d710ad36c1a99f86ec6bcd9b1
Issue-ID: CCSDK-290
Signed-off-by: Timoney, Dan (dt5972) <dt5972@att.com>
diff --git a/sli/features/odl-sli/pom.xml b/sli/features/odl-sli/pom.xml
index 1005dc7..b0a0cae 100644
--- a/sli/features/odl-sli/pom.xml
+++ b/sli/features/odl-sli/pom.xml
@@ -54,6 +54,13 @@
 		</dependency>
 
 		<dependency>
+			<groupId>org.onap.ccsdk.sli.core</groupId>
+			<artifactId>dblib-provider</artifactId>
+			<version>${project.version}</version>
+			<scope>provided</scope>
+		</dependency>
+
+		<dependency>
 			<groupId>org.mariadb.jdbc</groupId>
 			<artifactId>mariadb-java-client</artifactId>
 			<version>${mariadb.connector.version}</version>