Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,9 @@
[submodule "community-build/community-projects/protoquill"]
path = community-build/community-projects/protoquill
url = https://github.com/dotty-staging/protoquill.git
[submodule "community-build/community-projects/Monocle"]
path = community-build/community-projects/Monocle
url = https://github.com/dotty-staging/Monocle.git
[submodule "community-build/community-projects/onnx-scala"]
path = community-build/community-projects/onnx-scala
url = https://github.com/dotty-staging/onnx-scala.git
Expand Down
1 change: 1 addition & 0 deletions community-build/community-projects/Monocle
Submodule Monocle added at 4613af
7 changes: 7 additions & 0 deletions community-build/src/scala/dotty/communitybuild/projects.scala
Original file line number Diff line number Diff line change
Expand Up @@ -656,6 +656,12 @@ object projects:
dependencies = List(scalatest, scalatestplusJunit, scalatestplusScalacheck)
)

lazy val monocle = SbtCommunityProject(
project = "Monocle",
sbtTestCommand = "coreJVM/test; macrosJVM/test; testJVM/test",
dependencies = List(cats, munit, discipline, disciplineMunit)
)

lazy val protoquill = SbtCommunityProject(
project = "protoquill",
sbtTestCommand = "test",
Expand Down Expand Up @@ -746,6 +752,7 @@ def allProjects = List(
projects.izumiReflect,
projects.perspective,
projects.akka,
projects.monocle,
projects.protoquill,
projects.onnxScala,
projects.playJson,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ class CommunityBuildTestB extends CommunityBuildTest:
@Test def perspective = projects.perspective.run()
@Test def scodec = projects.scodec.run()
@Test def scodecBits = projects.scodecBits.run()
@Test def monocle = projects.monocle.run()
@Test def simulacrumScalafixAnnotations = projects.simulacrumScalafixAnnotations.run()
end CommunityBuildTestB

Expand Down