Skip to content

Commit 208bd02

Browse files
committed
[build] Add a project that aggregates the jvm projects
1 parent aa27203 commit 208bd02

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

build.sbt

+12
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,18 @@ lazy val xml = (projectMatrix in file("XmlParser"))
301301
scala3Ver,
302302
))
303303

304+
305+
lazy val jvms = (project in file(".sbt/matrix/jvms"))
306+
.disablePlugins(JvmPlugin)
307+
.disablePlugins(IvyPlugin)
308+
.disablePlugins(com.jsuereth.sbtpgp.SbtPgp)
309+
.disablePlugins(GitPlugin)
310+
.aggregate(base.jvm.get.map(Project.projectToRef):_*)
311+
.aggregate(json.jvm.get.map(Project.projectToRef):_*)
312+
.aggregate(time.jvm.get.map(Project.projectToRef):_*)
313+
.aggregate(uri.jvm.get.map(Project.projectToRef):_*)
314+
.aggregate(xml.jvm.get.map(Project.projectToRef):_*)
315+
304316
disablePlugins(MimaPlugin)
305317
disablePlugins(TastyMiMaPlugin)
306318
autoScalaLibrary := false

0 commit comments

Comments
 (0)