Skip to content

Commit c4b2a48

Browse files
authored
Merge pull request #110 from retronym/topic/fixup-scala-corpus
Make scala corpus cross buildable with 2.12 and 2.13 again (part 2)
2 parents 58fda38 + 4dfa68b commit c4b2a48

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ commands += Command.command("testAll") { s =>
1919
s
2020
}
2121

22-
resolvers += "scala-integration" at "https://scala-ci.typesafe.com/artifactory/scala-integration/"
22+
resolvers in ThisBuild += "scala-integration" at "https://scala-ci.typesafe.com/artifactory/scala-integration/"
2323

2424
// Convenient access to builds from PR validation
2525
resolvers in ThisBuild ++= (
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package scala.collection
2+
3+
object SeqFactory {
4+
// dummy to avoid FatalError when the 2.13.x pattern matcher looks up this symbol.
5+
final class UnapplySeqWrapper
6+
}

0 commit comments

Comments
 (0)