Skip to content

Commit

Permalink
Merge branch 'develop' into da_CORE-244_removeUserinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
davidangb authored Jan 23, 2025
2 parents 3cdc515 + 143c237 commit 72c4498
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions .github/workflows/dependency-graph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: sbt/setup-sbt@v1
- uses: scalacenter/sbt-dependency-submission@v3
with:
## Optional: Define the working directory of your build.
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.8.4
version = 3.8.5
align = none
align.openParenCallSite = true
align.openParenDefnSite = true
Expand Down
2 changes: 1 addition & 1 deletion automation/project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ object Settings {
val commonSettings =
commonBuildSettings ++ testSettings ++ List(
organization := "org.broadinstitute.dsde.firecloud",
scalaVersion := "2.13.15",
scalaVersion := "2.13.16",
resolvers := proxyResolvers ++: resolvers.value ++: commonResolvers,
scalacOptions ++= commonCompilerSettings,
dependencyOverrides ++= transitiveDependencyOverrides
Expand Down
2 changes: 1 addition & 1 deletion local-dev/templates/docker-rsync-local-orch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ start_server () {
-p 5051:5051 \
--network=fc-orch \
-e JAVA_OPTS="$DOCKER_JAVA_OPTS" \
sbtscala/scala-sbt:eclipse-temurin-17.0.13_11_1.10.7_2.13.15 \
sbtscala/scala-sbt:eclipse-temurin-17.0.13_11_1.10.7_2.13.16 \
bash -c "git config --global --add safe.directory /app && sbt \~reStart"

docker cp config/firecloud-account.pem orch-sbt:/etc/firecloud-account.pem
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object Dependencies {
val akkaHttpV = "10.6.3"
val jacksonV = "2.18.2"
val jacksonHotfixV = "2.18.2" // for when only some of the Jackson libs have hotfix releases
val nettyV = "4.1.116.Final"
val nettyV = "4.1.117.Final"
val workbenchLibsHash = "3e0cf25" // see https://github.com/broadinstitute/workbench-libs readme for hash values

def excludeGuava(m: ModuleID): ModuleID = m.exclude("com.google.guava", "guava")
Expand Down Expand Up @@ -48,19 +48,19 @@ object Dependencies {
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.5",

"org.parboiled" % "parboiled-core" % "1.4.1",
excludeGuava("org.broadinstitute.dsde" %% "rawls-model" % "v0.0.269-SNAP")
excludeGuava("org.broadinstitute.dsde" %% "rawls-model" % "v0.0.275-SNAP")
exclude("com.typesafe.scala-logging", "scala-logging_2.13")
exclude("com.typesafe.akka", "akka-stream_2.13")
exclude("com.google.code.findbugs", "jsr305")
excludeAll(excludeAkkaHttp, excludeSprayJson),
excludeGuava("org.broadinstitute.dsde.workbench" %% "workbench-util" % s"0.10-$workbenchLibsHash"),
"org.broadinstitute.dsde.workbench" %% "workbench-google2" % s"0.36-$workbenchLibsHash",
"org.broadinstitute.dsde.workbench" %% "workbench-oauth2" % s"0.8-$workbenchLibsHash",
"org.broadinstitute.dsde.workbench" %% "sam-client" % "v0.0.343",
"org.broadinstitute.dsde.workbench" %% "sam-client" % "v0.0.347",
"org.broadinstitute.dsde.workbench" %% "workbench-notifications" %s"0.8-$workbenchLibsHash",
"org.databiosphere" % "workspacedataservice-client-okhttp-jakarta" % "0.2.167-SNAPSHOT",
"bio.terra" % "externalcreds-client-resttemplate" % "1.44.0-20240725.201427-1" excludeAll(excludeSpring, excludeSpringBoot),
"org.springframework" % "spring-web" % "6.2.1" excludeAll(excludeSpringBoot, excludeSpringJcl),
"org.springframework" % "spring-web" % "6.2.2" excludeAll(excludeSpringBoot, excludeSpringJcl),

"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-slf4j" % akkaV,
Expand Down
2 changes: 1 addition & 1 deletion project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ object Settings {
val commonSettings =
commonBuildSettings ++ commonAssemblySettings ++ commonTestSettings ++ scalafmtSettings ++ List(
organization := "org.broadinstitute.dsde.firecloud",
scalaVersion := "2.13.15",
scalaVersion := "2.13.16",
resolvers := proxyResolvers ++: resolvers.value ++: commonResolvers,
scalacOptions ++= commonCompilerSettings,
dependencyOverrides ++= transitiveDependencyOverrides
Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.0")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1")

addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0")

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.3.0")

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")

addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")

Expand Down

0 comments on commit 72c4498

Please sign in to comment.