Skip to content

Commit e6cfaf6

Browse files
committed
Added scopt.
1 parent 487e677 commit e6cfaf6

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,3 +184,6 @@
184184
[submodule "community-build/community-projects/akka"]
185185
path = community-build/community-projects/akka
186186
url = https://github.com/dotty-staging/akka.git
187+
[submodule "community-build/community-projects/scopt"]
188+
path = community-build/community-projects/scopt
189+
url = https://github.com/scopt/scopt.git
Submodule scopt added at 0e307a2

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,14 @@ object projects:
382382
dependencies = List(munit, scodecBits)
383383
)
384384

385+
lazy val scopt = SbtCommunityProject(
386+
project = "scopt",
387+
sbtTestCommand = "scoptJVM/test",
388+
// Adds <empty> package
389+
dependencies = List(verify)
390+
)
391+
392+
385393
lazy val scalaParserCombinators = SbtCommunityProject(
386394
project = "scala-parser-combinators",
387395
sbtTestCommand = "parserCombinatorsJVM/test",
@@ -646,6 +654,7 @@ def allProjects = List(
646654
projects.discipline,
647655
projects.disciplineMunit,
648656
projects.disciplineSpecs2,
657+
projects.scopt,
649658
projects.simulacrumScalafixAnnotations,
650659
projects.cats,
651660
projects.catsMtl,

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ class CommunityBuildTestA extends CommunityBuildTest:
9393
@Test def geny = projects.geny.run()
9494
@Test def izumiReflect = projects.izumiReflect.run()
9595
@Test def oslib = projects.oslib.run()
96+
@Test def scopt = projects.scopt.run()
97+
9698
// @Test def oslibWatch = projects.oslibWatch.run()
9799
@Test def pprint = projects.pprint.run()
98100
@Test def requests = projects.requests.run()

0 commit comments

Comments
 (0)