Skip to content

community build: add play-json #12035

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 13, 2021
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 @@ -190,3 +190,6 @@
[submodule "community-build/community-projects/cask"]
path = community-build/community-projects/cask
url = https://github.com/dotty-staging/cask.git
[submodule "community-build/community-projects/play-json"]
path = community-build/community-projects/play-json
url = https://github.com/dotty-staging/play-json.git
1 change: 1 addition & 0 deletions community-build/community-projects/play-json
Submodule play-json added at b82b64
8 changes: 8 additions & 0 deletions community-build/src/scala/dotty/communitybuild/projects.scala
Original file line number Diff line number Diff line change
Expand Up @@ -654,6 +654,13 @@ object projects:
dependencies = List(scalatest)
)

lazy val playJson = SbtCommunityProject(
project = "play-json",
sbtTestCommand = "test",
sbtPublishCommand = "publishLocal",
dependencies = List(scalatest, scalatestplusScalacheck),
)

end projects

def allProjects = List(
Expand Down Expand Up @@ -724,6 +731,7 @@ def allProjects = List(
projects.akka,
projects.protoquill,
projects.onnxScala,
projects.playJson,
)

lazy val projectMap = allProjects.groupBy(_.project)
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ class CommunityBuildTestC extends CommunityBuildTest:
@Test def onnxScala = projects.onnxScala.run()
@Test def oslib = projects.oslib.run()
// @Test def oslibWatch = projects.oslibWatch.run()
@Test def playJson = projects.playJson.run()
@Test def pprint = projects.pprint.run()
@Test def protoquill = projects.protoquill.run()
@Test def requests = projects.requests.run()
Expand Down