1
- import CustomSettings ._
2
1
3
2
def itFilter (name : String ): Boolean = name endsWith " IntegrationSpec"
4
3
@@ -10,24 +9,24 @@ lazy val UnitTest = config("ut").extend(Test)
10
9
11
10
lazy val commonConfigs = Seq (ItTest , UnitTest )
12
11
12
+ val libatsVersion = " 2.4.1"
13
+
13
14
lazy val commonDeps = libraryDependencies ++= {
14
15
val scalaTestV = " 3.2.17"
15
- lazy val libatsV = libatsVersion.value
16
16
lazy val catsV = " 2.10.0"
17
17
18
18
Seq (
19
19
" org.scala-lang.modules" %% " scala-async" % " 1.0.1" ,
20
20
" org.scala-lang" % " scala-reflect" % scalaVersion.value % Provided ,
21
- " io.github.uptane" %% " libats" % libatsV ,
21
+ " io.github.uptane" %% " libats" % libatsVersion ,
22
22
" org.scalatest" %% " scalatest" % scalaTestV % " test" ,
23
23
" org.typelevel" %% " cats-core" % catsV,
24
24
)
25
25
}
26
26
27
27
lazy val serverDependencies = libraryDependencies ++= {
28
- lazy val akkaV = " 2.6.20"
29
- lazy val akkaHttpV = " 10.2.10"
30
- lazy val libatsV = libatsVersion.value
28
+ lazy val akkaV = " 2.8.5"
29
+ lazy val akkaHttpV = " 10.5.2"
31
30
32
31
Seq (
33
32
" com.typesafe.akka" %% " akka-actor" % akkaV,
@@ -38,13 +37,13 @@ lazy val serverDependencies = libraryDependencies ++= {
38
37
" com.typesafe.akka" %% " akka-http-testkit" % akkaHttpV % " test" ,
39
38
" com.softwaremill.sttp.client" %% " akka-http-backend" % " 2.3.0" % " test" ,
40
39
41
- " io.github.uptane" %% " libats-http" % libatsV ,
42
- " io.github.uptane" %% " libats-http-tracing" % libatsV ,
43
- " io.github.uptane" %% " libats-messaging" % libatsV ,
44
- " io.github.uptane" %% " libats-metrics-akka" % libatsV ,
45
- " io.github.uptane" %% " libats-metrics-prometheus" % libatsV ,
46
- " io.github.uptane" %% " libats-slick" % libatsV ,
47
- " io.github.uptane" %% " libats-logging" % libatsV ,
40
+ " io.github.uptane" %% " libats-http" % libatsVersion ,
41
+ " io.github.uptane" %% " libats-http-tracing" % libatsVersion ,
42
+ " io.github.uptane" %% " libats-messaging" % libatsVersion ,
43
+ " io.github.uptane" %% " libats-metrics-akka" % libatsVersion ,
44
+ " io.github.uptane" %% " libats-metrics-prometheus" % libatsVersion ,
45
+ " io.github.uptane" %% " libats-slick" % libatsVersion ,
46
+ " io.github.uptane" %% " libats-logging" % libatsVersion ,
48
47
" org.mariadb.jdbc" % " mariadb-java-client" % " 3.2.0"
49
48
)
50
49
}
@@ -59,7 +58,6 @@ lazy val commonSettings = Seq(
59
58
Compile / console / scalacOptions ~= (_.filterNot(_ == " -Ywarn-unused-import" )),
60
59
resolvers += " sonatype-snapshots" at " https://s01.oss.sonatype.org/content/repositories/snapshots" ,
61
60
resolvers += " sonatype-releases" at " https://s01.oss.sonatype.org/content/repositories/releases" ,
62
- libatsVersion := " 2.3.1" ,
63
61
licenses += (" MPL-2.0" , url(" http://mozilla.org/MPL/2.0/" )),
64
62
description := " scala tuf implementation support" ,
65
63
buildInfoOptions += BuildInfoOption .ToMap ,
0 commit comments