Skip to content

Commit 577721f

Browse files
authored
Work around sbt/sbt#8376 and re-enable shapeless-3 community build (#24709)
- works around sbt/sbt#8376 / coursier/coursier#3520 - kudos to @eed3si9n for suggesting this, as per coursier/coursier#3520 (comment) - re-enables tests disabled in #24477 (comment)
1 parent 07883c1 commit 577721f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class CommunityBuildTestC:
9393
@Test def scalaz = projects.scalaz.run()
9494
@Test def scas = projects.scas.run()
9595
@Test def sconfig = projects.sconfig.run()
96-
//@Test def shapeless3 = projects.shapeless3.run()
96+
@Test def shapeless3 = projects.shapeless3.run()
9797
@Test def sourcecode = projects.sourcecode.run()
9898
@Test def specs2 = projects.specs2.run()
9999

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2968,7 +2968,7 @@ object Build {
29682968
publishConfiguration ~= (_.withOverwrite(true)),
29692969
publishLocalConfiguration ~= (_.withOverwrite(true)),
29702970
projectID ~= {id =>
2971-
val line = "scala.versionLine" -> versionLine
2971+
val line = "info.scala.versionLine" -> versionLine
29722972
id.withExtraAttributes(id.extraAttributes + line)
29732973
},
29742974
Test / publishArtifact := false,

0 commit comments

Comments
 (0)