diff --git a/build.gradle b/build.gradle index 856d914cc..05caa1d6e 100644 --- a/build.gradle +++ b/build.gradle @@ -56,6 +56,9 @@ jar { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } } exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA' + + // Explicitly exclude com/linkedin/data files from the final jar. They can cause issues in other downstream applications. + exclude 'com/linkedin/data/**' zip64 = true } diff --git a/gradle.properties b/gradle.properties index dd82ffb87..878a7d969 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ -version=0.10.3-rc6 +version=0.10.3-rc7 SONATYPE_AUTOMATIC_RELEASE=true POM_ARTIFACT_ID=feathr_2.12