Skip to content

Commit d17806c

Browse files
committed
Added scopt.
1 parent cc87d06 commit d17806c

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
@@ -187,6 +187,9 @@
187187
[submodule "community-build/community-projects/protoquill"]
188188
path = community-build/community-projects/protoquill
189189
url = https://github.com/dotty-staging/protoquill.git
190+
[submodule "community-build/community-projects/scopt"]
191+
path = community-build/community-projects/scopt
192+
url = https://github.com/scopt/scopt.git
190193
[submodule "community-build/community-projects/onnx-scala"]
191194
path = community-build/community-projects/onnx-scala
192195
url = https://github.com/dotty-staging/onnx-scala.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
@@ -406,6 +406,14 @@ object projects:
406406
dependencies = List(munit, scodecBits)
407407
)
408408

409+
lazy val scopt = SbtCommunityProject(
410+
project = "scopt",
411+
sbtTestCommand = "scoptJVM/test",
412+
// Adds <empty> package
413+
dependencies = List(verify)
414+
)
415+
416+
409417
lazy val scalaParserCombinators = SbtCommunityProject(
410418
project = "scala-parser-combinators",
411419
sbtTestCommand = "parserCombinatorsJVM/test",
@@ -690,6 +698,7 @@ def allProjects = List(
690698
projects.discipline,
691699
projects.disciplineMunit,
692700
projects.disciplineSpecs2,
701+
projects.scopt,
693702
projects.simulacrumScalafixAnnotations,
694703
projects.cats,
695704
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)