@@ -10,6 +10,8 @@ import higherkindness.mu.rpc.srcgen.SrcGenPlugin.autoImport._
10
10
import _root_ .io .github .davidgregory084 .ScalacOptions
11
11
import _root_ .io .github .davidgregory084 .TpolecatPlugin .autoImport ._
12
12
13
+ import scala .language .reflectiveCalls
14
+
13
15
object ProjectPlugin extends AutoPlugin {
14
16
15
17
override def trigger : PluginTrigger = allRequirements
@@ -21,18 +23,19 @@ object ProjectPlugin extends AutoPlugin {
21
23
val catsEffect : String = " 3.5.4"
22
24
val catsRetry : String = " 3.1.3"
23
25
val dockerItScala = " 0.12.0"
24
- val dropwizard : String = " 4.2.26 "
25
- val enumeratum : String = " 1.7.4 "
26
+ val dropwizard : String = " 4.2.28 "
27
+ val enumeratum : String = " 1.7.5 "
26
28
val fs2 : String = " 3.10.2"
27
- val fs2Grpc : String = " 2.7.16 "
29
+ val fs2Grpc : String = " 2.7.20 "
28
30
val grpc : String = " 1.65.0"
29
31
val kindProjector : String = " 0.13.3"
30
32
val log4cats : String = " 2.7.0"
31
33
val log4s : String = " 1.10.0"
32
- val logback : String = " 1.5.6"
33
- val munit : String = " 0.7.29"
34
- val munitCE : String = " 1.0.7"
35
- val natchez : String = " 0.3.5"
34
+ val logback : String = " 1.5.11"
35
+ val munit : String = " 1.0.2"
36
+ val munitSC : String = " 1.0.0"
37
+ val munitCE : String = " 2.0.0"
38
+ val natchez : String = " 0.3.7"
36
39
val nettySSL : String = " 2.0.61.Final"
37
40
val paradise : String = " 2.1.1"
38
41
val pbdirect : String = " 0.7.0"
@@ -44,7 +47,7 @@ object ProjectPlugin extends AutoPlugin {
44
47
val scalapb : String = " 0.11.17"
45
48
val scalatest : String = " 3.2.12"
46
49
val scalatestplusScheck : String = " 3.2.2.0"
47
- val slf4j : String = " 2.0.13 "
50
+ val slf4j : String = " 2.0.16 "
48
51
}
49
52
50
53
lazy val rpcServiceSettings : Seq [Def .Setting [_]] = Seq (
@@ -122,8 +125,8 @@ object ProjectPlugin extends AutoPlugin {
122
125
libraryDependencies ++= Seq (
123
126
" com.github.pureconfig" %% " pureconfig" % V .pureconfig,
124
127
" org.scalameta" %% " munit" % V .munit % Test ,
125
- " org.scalameta" %% " munit-scalacheck" % V .munit % Test ,
126
- " org.typelevel" %% " munit-cats-effect-3 " % V .munitCE % Test ,
128
+ " org.scalameta" %% " munit-scalacheck" % V .munitSC % Test ,
129
+ " org.typelevel" %% " munit-cats-effect" % V .munitCE % Test ,
127
130
" org.typelevel" %% " cats-effect-testkit" % V .catsEffect % Test
128
131
)
129
132
)
@@ -198,10 +201,10 @@ object ProjectPlugin extends AutoPlugin {
198
201
199
202
lazy val docsSettings : Seq [Def .Setting [_]] = Seq (
200
203
libraryDependencies ++= Seq (
201
- " org.scalameta" %% " munit-scalacheck" % V .munit ,
202
- " org.typelevel" %% " munit-cats-effect-3 " % V .munitCE,
203
- " io.dropwizard.metrics" % " metrics-jmx" % V .dropwizard,
204
- " org.tpolecat" %% " natchez-jaeger" % V .natchez
204
+ " org.scalameta" %% " munit-scalacheck" % V .munitSC ,
205
+ " org.typelevel" %% " munit-cats-effect" % V .munitCE,
206
+ " io.dropwizard.metrics" % " metrics-jmx" % V .dropwizard,
207
+ " org.tpolecat" %% " natchez-jaeger" % V .natchez
205
208
),
206
209
scalacOptions ~= (_ filterNot Set (
207
210
" -Xfatal-warnings" ,
@@ -217,7 +220,7 @@ object ProjectPlugin extends AutoPlugin {
217
220
scalacOptions -= " -Xfatal-warnings" ,
218
221
libraryDependencies ++= Seq (
219
222
" io.grpc" % " grpc-core" % V .grpc,
220
- " org.scalameta" %% " munit-scalacheck" % V .munit ,
223
+ " org.scalameta" %% " munit-scalacheck" % V .munitSC ,
221
224
" org.typelevel" %% " cats-effect" % V .catsEffect
222
225
)
223
226
)
@@ -232,8 +235,8 @@ object ProjectPlugin extends AutoPlugin {
232
235
" com.47deg" %% " scalacheck-toolbox-datetime" % V .scalacheckToolbox % Test ,
233
236
" org.scala-lang.modules" %% " scala-collection-compat" % V .scalaCollectionCompat % Test ,
234
237
" org.scalameta" %% " munit" % V .munit % Test ,
235
- " org.scalameta" %% " munit-scalacheck" % V .munit % Test ,
236
- " org.typelevel" %% " munit-cats-effect-3 " % V .munitCE % Test ,
238
+ " org.scalameta" %% " munit-scalacheck" % V .munitSC % Test ,
239
+ " org.typelevel" %% " munit-cats-effect" % V .munitCE % Test ,
237
240
" org.typelevel" %% " cats-effect-testkit" % V .catsEffect % Test ,
238
241
" ch.qos.logback" % " logback-classic" % V .logback % Test ,
239
242
" com.github.cb372" %% " cats-retry" % V .catsRetry % Test
@@ -310,7 +313,7 @@ object ProjectPlugin extends AutoPlugin {
310
313
missinglinkIgnoreSourcePackages += IgnoredPackage (" io.netty.handler.ssl" )
311
314
)
312
315
313
- import autoImport ._
316
+ import autoImport .*
314
317
315
318
override def projectSettings : Seq [Def .Setting [_]] =
316
319
Seq (
0 commit comments