@@ -5,20 +5,21 @@ import com.typesafe.tools.mima.core._
5
5
6
6
val scala2_11 = " 2.11.12"
7
7
val scala2_12 = " 2.12.15"
8
- val scala2_13 = " 2.13.7 "
8
+ val scala2_13 = " 2.13.8 "
9
9
val scala2 = List (scala2_11, scala2_12, scala2_13)
10
- val scala3 = List (" 3.1.0 " )
10
+ val scala3 = List (" 3.1.2 " )
11
11
12
- val sttpModelVersion = " 1.4.21 "
12
+ val sttpModelVersion = " 1.4.25 "
13
13
14
- val scalaTestVersion = " 3.2.10 "
15
- val zio1Version = " 1.0.13 "
16
- val zio2Version = " 2.0.0-RC1 "
14
+ val scalaTestVersion = " 3.2.12 "
15
+ val zio1Version = " 1.0.14 "
16
+ val zio2Version = " 2.0.0-RC5 "
17
17
val fs2_2_version : Option [(Long , Long )] => String = {
18
18
case Some ((2 , 11 )) => " 2.1.0"
19
19
case _ => " 2.5.9"
20
20
}
21
- val fs2_3_version = " 3.2.4"
21
+ val fs2_3_version = " 3.2.7"
22
+ val armeriaVersion = " 1.16.0"
22
23
23
24
excludeLintKeys in Global ++= Set (ideSkipProject)
24
25
@@ -73,7 +74,7 @@ val commonNativeSettings = commonSettings ++ Seq(
73
74
)
74
75
75
76
lazy val allProjectRefs =
76
- core.projectRefs ++ ws.projectRefs ++ akka.projectRefs ++ fs2ce2.projectRefs ++ fs2.projectRefs ++ monix.projectRefs ++ zio1.projectRefs ++ zio.projectRefs
77
+ core.projectRefs ++ ws.projectRefs ++ akka.projectRefs ++ armeria.projectRefs ++ fs2ce2.projectRefs ++ fs2.projectRefs ++ monix.projectRefs ++ zio1.projectRefs ++ zio.projectRefs
77
78
78
79
lazy val projectAggregates : Seq [ProjectReference ] = if (sys.env.isDefinedAt(" STTP_NATIVE" )) {
79
80
println(" [info] STTP_NATIVE defined, including sttp-native in the aggregate projects" )
@@ -139,7 +140,19 @@ lazy val akka = (projectMatrix in file("akka"))
139
140
.jvmPlatform(
140
141
scalaVersions = List (scala2_12, scala2_13) ++ scala3,
141
142
settings = commonJvmSettings ++ Seq (
142
- libraryDependencies += " com.typesafe.akka" %% " akka-stream" % " 2.6.18" % " provided"
143
+ libraryDependencies += " com.typesafe.akka" %% " akka-stream" % " 2.6.19" % " provided"
144
+ )
145
+ )
146
+ .dependsOn(core)
147
+
148
+ lazy val armeria = (projectMatrix in file(" armeria" ))
149
+ .settings(
150
+ name := " armeria"
151
+ )
152
+ .jvmPlatform(
153
+ scalaVersions = scala2 ++ scala3,
154
+ settings = commonJvmSettings ++ Seq (
155
+ libraryDependencies += " com.linecorp.armeria" % " armeria" % armeriaVersion
143
156
)
144
157
)
145
158
.dependsOn(core)
0 commit comments