Skip to content

Commit

Permalink
ID-1286 Update workbenchLibs - add retries to group creation (#1449)
Browse files Browse the repository at this point in the history
* ID-1286 Update workbenchLibs - add retries to group creation and force sequential update after group creation.

* ID-1286 Update workbenchLibs - add retries to group creation and force sequential update after group creation.

* ID-1286 Update workbenchLibs - add retries to group creation and force sequential update after group creation.

* Add bouncycastle to merge strategy
  • Loading branch information
Ghost-in-a-Jar authored May 30, 2024
1 parent d52049b commit 3eabcc4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions automation/project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ object Dependencies {
val akkaV = "2.6.19"
val akkaHttpV = "10.2.2"

val workbenchLibV = "d16cba9"
val workbenchGoogleV = s"0.30-$workbenchLibV"
val workbenchLibV = "89f86ba"

val workbenchGoogleV = s"0.32-$workbenchLibV"
val workbenchGoogle2V = s"0.36-$workbenchLibV"
val workbenchServiceTestV = "2.0-5863cbd"

Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ object Dependencies {
val postgresDriverVersion = "42.7.2"
val sentryVersion = "6.15.0"

val workbenchLibV = "d16cba9" // If updating this, make sure googleStorageLocal in test dependencies is up-to-date
val workbenchLibV = "89f86ba" // If updating this, make sure googleStorageLocal in test dependencies is up-to-date
val workbenchUtilV = s"0.10-$workbenchLibV"
val workbenchUtil2V = s"0.9-$workbenchLibV"
val workbenchModelV = s"0.19-$workbenchLibV"
val workbenchGoogleV = s"0.30-$workbenchLibV"
val workbenchGoogleV = s"0.32-$workbenchLibV"
val workbenchGoogle2V = s"0.36-$workbenchLibV"
val workbenchNotificationsV = s"0.6-$workbenchLibV"
val workbenchOauth2V = s"0.7-$workbenchLibV"
Expand Down
2 changes: 2 additions & 0 deletions project/Merging.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ object Merging {
case PathList("javax", "activation", _ @_*) => MergeStrategy.first
case PathList("javax", "xml", _ @_*) => MergeStrategy.first
case PathList("google", "protobuf", _ @_*) => MergeStrategy.first
case PathList("org", "bouncycastle", _ @_*) => MergeStrategy.first
case x if x.endsWith("/ModuleUtil.class") => MergeStrategy.first
case PathList("META-INF", "versions", "9", "module-info.class") => MergeStrategy.first
case PathList("META-INF", "io.netty.versions.properties") => MergeStrategy.first
case PathList("META-INF", "kotlin-result.kotlin_module") => MergeStrategy.first
case PathList("META-INF", "kotlin-stdlib.kotlin_module") => MergeStrategy.first
case PathList("META-INF", "kotlin-stdlib-common.kotlin_module") => MergeStrategy.first
case PathList("META-INF", "okio.kotlin_module") => MergeStrategy.first
case PathList("META-INF", "versions", "9", "OSGI-INF", "MANIFEST.MF") => MergeStrategy.first
case PathList("mozilla", "public-suffix-list.txt") => MergeStrategy.first
case "module-info.class" =>
MergeStrategy.discard
Expand Down

0 comments on commit 3eabcc4

Please sign in to comment.