Skip to content

Commit d2e1e98

Browse files
Update coursier to 2.1.25-M3 (#4725)
This updates coursier to [`2.1.25-M3`](https://github.com/coursier/coursier/releases/tag/v2.1.25-M3), that improves Gradle Module support. I'll experiment with enabling it in Mill in [another PR](#4626).
1 parent a44321f commit d2e1e98

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

build.mill

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ object Deps {
127127
val asmTree = ivy"org.ow2.asm:asm-tree:9.7.1"
128128
val bloopConfig = ivy"ch.epfl.scala::bloop-config:1.5.5".withDottyCompat(scalaVersion)
129129

130-
val coursierVersion = "2.1.25-M2"
130+
val coursierVersion = "2.1.25-M3"
131131
val coursier = ivy"io.get-coursier::coursier:$coursierVersion".withDottyCompat(scalaVersion)
132132
val coursierInterface = ivy"io.get-coursier:interface:1.0.29-M1"
133133
val coursierJvm =

scalalib/src/mill/scalalib/JsonFormatters.scala

+21
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ trait JsonFormatters {
2323
_.asString,
2424
coursier.version.Version(_)
2525
)
26+
implicit lazy val variantMatcherFormat: RW[coursier.core.VariantSelector.VariantMatcher] =
27+
RW.merge(
28+
upickle.default.macroRW[coursier.core.VariantSelector.VariantMatcher.Api.type],
29+
upickle.default.macroRW[coursier.core.VariantSelector.VariantMatcher.Runtime.type],
30+
upickle.default.macroRW[coursier.core.VariantSelector.VariantMatcher.Equals],
31+
upickle.default.macroRW[coursier.core.VariantSelector.VariantMatcher.MinimumVersion],
32+
upickle.default.macroRW[coursier.core.VariantSelector.VariantMatcher.AnyOf],
33+
upickle.default.macroRW[coursier.core.VariantSelector.VariantMatcher.EndsWith]
34+
)
2635
implicit lazy val variantSelectorFormat: RW[coursier.core.VariantSelector] =
2736
RW.merge(
2837
upickle.default.macroRW[coursier.core.VariantSelector.ConfigurationBased],
@@ -198,5 +207,17 @@ object JsonFormatters extends JsonFormatters {
198207
given Root_coursier_core_Project
199208
: Mirrors.Root[coursier.core.Project] =
200209
Mirrors.autoRoot[coursier.core.Project]
210+
given Root_coursier_core_VariantSelector_VariantMatcher_Equals
211+
: Mirrors.Root[coursier.core.VariantSelector.VariantMatcher.Equals] =
212+
Mirrors.autoRoot[coursier.core.VariantSelector.VariantMatcher.Equals]
213+
given Root_coursier_core_VariantSelector_VariantMatcher_MinimumVersion
214+
: Mirrors.Root[coursier.core.VariantSelector.VariantMatcher.MinimumVersion] =
215+
Mirrors.autoRoot[coursier.core.VariantSelector.VariantMatcher.MinimumVersion]
216+
given Root_coursier_core_VariantSelector_VariantMatcher_AnyOf
217+
: Mirrors.Root[coursier.core.VariantSelector.VariantMatcher.AnyOf] =
218+
Mirrors.autoRoot[coursier.core.VariantSelector.VariantMatcher.AnyOf]
219+
given Root_coursier_core_VariantSelector_VariantMatcher_EndsWith
220+
: Mirrors.Root[coursier.core.VariantSelector.VariantMatcher.EndsWith] =
221+
Mirrors.autoRoot[coursier.core.VariantSelector.VariantMatcher.EndsWith]
201222
}
202223
}

0 commit comments

Comments
 (0)