diff --git a/vtm-android-example/build.gradle b/vtm-android-example/build.gradle index b222e345..08f1bb2e 100644 --- a/vtm-android-example/build.gradle +++ b/vtm-android-example/build.gradle @@ -58,7 +58,7 @@ android { lintOptions { abortOnError false } packagingOptions { - exclude 'META-INF/services/org.jeo.data.Driver' + exclude 'META-INF/services/io.jeo.data.Driver' exclude 'META-INF/LICENSE' exclude 'META-INF/NOTICE' } diff --git a/vtm-playground/build.gradle b/vtm-playground/build.gradle index 8ec0b2b2..06cb0a77 100644 --- a/vtm-playground/build.gradle +++ b/vtm-playground/build.gradle @@ -32,7 +32,7 @@ run { task fatJar(type: Jar, dependsOn: configurations.runtimeClasspath) { classifier 'jar-with-dependencies' from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } } - exclude 'META-INF/*.DSA', 'META-INF/*.RSA', 'META-INF/*.SF' + exclude 'META-INF/*.DSA', 'META-INF/*.RSA', 'META-INF/*.SF', 'META-INF/services/io.jeo.data.Driver' manifest { attributes 'Main-Class': "${mainClassName}" }