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 @@ -213,3 +213,6 @@
[submodule "community-build/community-projects/scala-java8-compat"]
path = community-build/community-projects/scala-java8-compat
url = https://github.com/dotty-staging/scala-java8-compat.git
[submodule "community-build/community-projects/specs2"]
path = community-build/community-projects/specs2
url = https://github.com/dotty-staging/specs2.git
1 change: 1 addition & 0 deletions community-build/community-projects/specs2
Submodule specs2 added at 0652da
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 @@ -731,6 +731,13 @@ object projects:
dependencies = List(scalaJava8Compat, scalatest)
)

lazy val specs2 = SbtCommunityProject(
project = "specs2",
sbtTestCommand = "core/testOnly -- exclude ci",
sbtPublishCommand = "core/publishLocal",
dependencies = List()
)

end projects

def allProjects = List(
Expand Down Expand Up @@ -809,6 +816,7 @@ def allProjects = List(
projects.fs2,
projects.libretto,
projects.jacksonModuleScala,
projects.specs2,
)

lazy val projectMap = allProjects.groupBy(_.project)
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ class CommunityBuildTestC:
@Test def sconfig = projects.sconfig.run()
@Test def shapeless = projects.shapeless.run()
@Test def sourcecode = projects.sourcecode.run()
@Test def specs2 = projects.specs2.run()
@Test def stdLib213 = projects.stdLib213.run()
@Test def ujson = projects.ujson.run()
@Test def upickle = projects.upickle.run()
Expand Down