@@ -8,7 +8,7 @@ inScope(Global)(
8
8
lazy val root = project
9
9
.in(file(" ." ))
10
10
.aggregate(
11
- rules, input, output , tests
11
+ rules, input, output212, output213, output213Failure , tests
12
12
)
13
13
14
14
lazy val rules = project.settings(
@@ -20,13 +20,15 @@ lazy val input = project
20
20
scalafixSourceroot := sourceDirectory.in(Compile ).value
21
21
)
22
22
23
- lazy val output = project
23
+ lazy val output212 = project
24
+
25
+ lazy val output213 = project
24
26
.settings(
25
27
resolvers += " scala-pr" at " https://scala-ci.typesafe.com/artifactory/scala-integration/" ,
26
28
scalaVersion := " 2.13.0-M4"
27
29
)
28
30
29
- lazy val outputFailure = project.in(file(" output -failure" ))
31
+ lazy val output213Failure = project.in(file(" output213 -failure" ))
30
32
.settings(
31
33
resolvers += " scala-pr" at " https://scala-ci.typesafe.com/artifactory/scala-integration/" ,
32
34
scalaVersion := " 2.13.0-M4"
@@ -39,14 +41,19 @@ lazy val tests = project
39
41
buildInfoKeys := Seq [BuildInfoKey ](
40
42
" inputSourceroot" ->
41
43
sourceDirectory.in(input, Compile ).value,
42
- " outputSourceroot" ->
43
- sourceDirectory.in(output, Compile ).value,
44
- " outputFailureSourceroot" ->
45
- sourceDirectory.in(outputFailure, Compile ).value,
44
+ " output212Sourceroot" ->
45
+ sourceDirectory.in(output212, Compile ).value,
46
+ " output213Sourceroot" ->
47
+ sourceDirectory.in(output213, Compile ).value,
48
+ " output213FailureSourceroot" ->
49
+ sourceDirectory.in(output213Failure, Compile ).value,
46
50
" inputClassdirectory" ->
47
51
classDirectory.in(input, Compile ).value
48
52
),
49
- test in Test := (test in Test ).dependsOn(compile in (output, Compile )).value
53
+ test in Test := (test in Test ).dependsOn(
54
+ compile in (output212, Compile ),
55
+ compile in (output213, Compile )
56
+ ).value
50
57
)
51
58
.dependsOn(input, rules)
52
59
.enablePlugins(BuildInfoPlugin )
0 commit comments