Skip to content

Commit b0dee7b

Browse files
Merge pull request #12035 from SethTisue/add-play-json
community build: add play-json
2 parents 69108bf + 72f9cb6 commit b0dee7b

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,3 +190,6 @@
190190
[submodule "community-build/community-projects/cask"]
191191
path = community-build/community-projects/cask
192192
url = https://github.com/dotty-staging/cask.git
193+
[submodule "community-build/community-projects/play-json"]
194+
path = community-build/community-projects/play-json
195+
url = https://github.com/dotty-staging/play-json.git
Submodule play-json added at b82b64d

community-build/src/scala/dotty/communitybuild/projects.scala

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -654,6 +654,13 @@ object projects:
654654
dependencies = List(scalatest)
655655
)
656656

657+
lazy val playJson = SbtCommunityProject(
658+
project = "play-json",
659+
sbtTestCommand = "test",
660+
sbtPublishCommand = "publishLocal",
661+
dependencies = List(scalatest, scalatestplusScalacheck),
662+
)
663+
657664
end projects
658665

659666
def allProjects = List(
@@ -724,6 +731,7 @@ def allProjects = List(
724731
projects.akka,
725732
projects.protoquill,
726733
projects.onnxScala,
734+
projects.playJson,
727735
)
728736

729737
lazy val projectMap = allProjects.groupBy(_.project)

community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ class CommunityBuildTestC extends CommunityBuildTest:
144144
@Test def onnxScala = projects.onnxScala.run()
145145
@Test def oslib = projects.oslib.run()
146146
// @Test def oslibWatch = projects.oslibWatch.run()
147+
@Test def playJson = projects.playJson.run()
147148
@Test def pprint = projects.pprint.run()
148149
@Test def protoquill = projects.protoquill.run()
149150
@Test def requests = projects.requests.run()

0 commit comments

Comments
 (0)