Skip to content

Commit

Permalink
relocating protobuf as causing dependency issues (#1190)
Browse files Browse the repository at this point in the history
Co-authored-by: Anirudh Agarwal <aniagarwal@linkedin.biz>
  • Loading branch information
anirudhagar13 and Anirudh Agarwal committed Jun 15, 2023
1 parent 76fb4dc commit 5a52089
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ plugins {
// See https://issues.sonatype.org/browse/OSSRH-86507 for more details.
id "com.vanniktech.maven.publish" version "0.22.0"
id 'signing'
id 'com.github.johnrengelman.shadow' version '5.0.0'
}

repositories {
Expand Down Expand Up @@ -187,3 +188,10 @@ allprojects {
}
}
}

apply plugin: 'com.github.johnrengelman.shadow'

shadowJar {
configurations = [project.configurations.shadow]
relocate "com.google.protobuf", "com.linkedin.feathr.com.google.protobuf"
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=1.0.5-rc2
version=1.0.5-rc3
SONATYPE_AUTOMATIC_RELEASE=true
POM_ARTIFACT_ID=feathr_2.12

0 comments on commit 5a52089

Please sign in to comment.