Skip to content

Commit

Permalink
Merge remote-tracking branch 'uptane/master' into trx-master
Browse files Browse the repository at this point in the history
  • Loading branch information
simao committed Oct 10, 2023
2 parents fa6709c + c780165 commit a217fb5
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 29 deletions.
30 changes: 14 additions & 16 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import CustomSettings._

def itFilter(name: String): Boolean = name endsWith "IntegrationSpec"

Expand All @@ -10,24 +9,24 @@ lazy val UnitTest = config("ut").extend(Test)

lazy val commonConfigs = Seq(ItTest, UnitTest)

val libatsVersion = "2.4.1"

lazy val commonDeps = libraryDependencies ++= {
val scalaTestV = "3.2.16"
lazy val libatsV = libatsVersion.value
val scalaTestV = "3.2.17"
lazy val catsV = "2.10.0"

Seq(
"org.scala-lang.modules" %% "scala-async" % "1.0.1",
"org.scala-lang" % "scala-reflect" % scalaVersion.value % Provided,
"io.github.uptane" %% "libats" % libatsV,
"io.github.uptane" %% "libats" % libatsVersion,
"org.scalatest" %% "scalatest" % scalaTestV % "test",
"org.typelevel" %% "cats-core" % catsV,
)
}

lazy val serverDependencies = libraryDependencies ++= {
lazy val akkaV = "2.6.20"
lazy val akkaHttpV = "10.2.10"
lazy val libatsV = libatsVersion.value
lazy val akkaV = "2.8.5"
lazy val akkaHttpV = "10.5.2"

Seq(
"com.typesafe.akka" %% "akka-actor" % akkaV,
Expand All @@ -38,14 +37,14 @@ lazy val serverDependencies = libraryDependencies ++= {
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV % "test",
"com.softwaremill.sttp.client" %% "akka-http-backend" % "2.3.0" % "test",

"io.github.uptane" %% "libats-http" % libatsV,
"io.github.uptane" %% "libats-http-tracing" % libatsV,
"io.github.uptane" %% "libats-messaging" % libatsV,
"io.github.uptane" %% "libats-metrics-akka" % libatsV,
"io.github.uptane" %% "libats-metrics-prometheus" % libatsV,
"io.github.uptane" %% "libats-slick" % libatsV,
"io.github.uptane" %% "libats-logging" % libatsV,
"org.mariadb.jdbc" % "mariadb-java-client" % "3.1.4"
"io.github.uptane" %% "libats-http" % libatsVersion,
"io.github.uptane" %% "libats-http-tracing" % libatsVersion,
"io.github.uptane" %% "libats-messaging" % libatsVersion,
"io.github.uptane" %% "libats-metrics-akka" % libatsVersion,
"io.github.uptane" %% "libats-metrics-prometheus" % libatsVersion,
"io.github.uptane" %% "libats-slick" % libatsVersion,
"io.github.uptane" %% "libats-logging" % libatsVersion,
"org.mariadb.jdbc" % "mariadb-java-client" % "3.2.0"
)
}

Expand All @@ -59,7 +58,6 @@ lazy val commonSettings = Seq(
Compile / console / scalacOptions ~= (_.filterNot(_ == "-Ywarn-unused-import")),
resolvers += "sonatype-snapshots" at "https://s01.oss.sonatype.org/content/repositories/snapshots",
resolvers += "sonatype-releases" at "https://s01.oss.sonatype.org/content/repositories/releases",
libatsVersion := "2.1.2",
licenses += ("MPL-2.0", url("http://mozilla.org/MPL/2.0/")),
description := "scala tuf implementation support",
buildInfoOptions += BuildInfoOption.ToMap,
Expand Down
4 changes: 2 additions & 2 deletions cli/build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
libraryDependencies += "com.github.scopt" %% "scopt" % "4.1.0"

libraryDependencies += "org.slf4j" % "slf4j-api" % "2.0.7"
libraryDependencies += "org.slf4j" % "slf4j-api" % "2.0.9"

libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.4.11"

libraryDependencies += "io.circe" %% "circe-generic-extras" % "0.14.3"

libraryDependencies += "io.circe" %% "circe-literal" % "0.14.5" % Test
libraryDependencies += "io.circe" %% "circe-literal" % "0.14.6" % Test

fork := true
4 changes: 2 additions & 2 deletions libtuf/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ libraryDependencies ++= {
"com.softwaremill.sttp.client" %% "slf4j-backend" % "2.3.0",
"com.softwaremill.sttp.client" %% "async-http-client-backend-future" % "2.3.0",
"org.slf4j" % "slf4j-api" % "1.7.16" % "provided",
"com.azure" % "azure-storage-blob" % "12.23.0",
"com.azure" % "azure-identity" % "1.10.0"
"com.azure" % "azure-storage-blob" % "12.24.0",
"com.azure" % "azure-identity" % "1.10.1"
)
}
5 changes: 0 additions & 5 deletions project/CustomSettings.scala

This file was deleted.

2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sbt.version=1.9.3
sbt.version=1.9.6


4 changes: 2 additions & 2 deletions project/build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

libraryDependencies += "com.amazonaws" % "aws-java-sdk-s3" % "1.12.533"
libraryDependencies += "com.amazonaws" % "aws-java-sdk-s3" % "1.12.565"

libraryDependencies += "org.apache.commons" % "commons-compress" % "1.23.0"
libraryDependencies += "org.apache.commons" % "commons-compress" % "1.24.0"

2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.16")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.9")
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.5.11")
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.0.1")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.21")

0 comments on commit a217fb5

Please sign in to comment.