Skip to content

Add ReactiveMongo-BSON to community-build #14188

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

Closed
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 @@ -219,3 +219,6 @@
[submodule "community-build/community-projects/spire"]
path = community-build/community-projects/spire
url = https://github.com/dotty-staging/spire.git
[submodule "community-build/community-projects/ReactiveMongo-BSON"]
path = community-build/community-projects/ReactiveMongo-BSON
url = https://github.com/ReactiveMongo/ReactiveMongo-BSON.git
5 changes: 3 additions & 2 deletions community-build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ To add your project to the community build you can follow these steps:
2. Open a PR against this repo that:
- Adds your project as a new git submodule
- `git submodule add https://github.com/lampepfl/XYZ.git community-build/community-projects/XYZ`
- Add the project to [projects.scala](https://github.com/lampepfl/dotty/blob/master/community-build/src/scala/dotty/communitybuild/projects.scala)
- Adds a test in [CommunityBuildTest.scala](https://github.com/lampepfl/dotty/blob/master/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala)
- Add the project to [projects.scala](https://github.com/lampepfl/dotty/blob/master/community-build/src/scala/dotty/communitybuild/projects.scala).
- Adds a test in [CommunityBuildTest.scala](https://github.com/lampepfl/dotty/blob/master/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala).
- Make sure the test supports `-Ysafe-init`.
1 change: 1 addition & 0 deletions community-build/community-projects/ReactiveMongo-BSON
Submodule ReactiveMongo-BSON added at f4e89d
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 @@ -745,6 +745,13 @@ object projects:
dependencies = List(cats, disciplineMunit)
)

lazy val ReactiveMongoBson = SbtCommunityProject(
project = "ReactiveMongo-BSON",
sbtTestCommand = "api/testOnly",
sbtPublishCommand = "api/publishLocal",
dependencies = List()
)

end projects

def allProjects = List(
Expand Down Expand Up @@ -824,6 +831,7 @@ def allProjects = List(
projects.libretto,
projects.jacksonModuleScala,
projects.specs2,
projects.ReactiveMongoBson,
)

lazy val projectMap = allProjects.groupBy(_.project)
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,5 @@ class CommunityBuildTestC:
@Test def utest = projects.utest.run()
@Test def verify = projects.verify.run()
@Test def xmlInterpolator = projects.xmlInterpolator.run()
@Test def reactiveMongoBson = projects.ReactiveMongoBson.run()
end CommunityBuildTestC