Skip to content

Commit 2e4a636

Browse files
committed
Fix scripted test
1 parent 73165f2 commit 2e4a636

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

sbt-plugin/src/sbt-test/dependency-manifest/ignore-scaladoc/build.sbt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,15 @@ inThisBuild(
1717
)
1818

1919
Global / ignoreScaladoc := {
20-
val input = DependencySnapshotInput(None, Vector.empty, ignoredConfigs = Vector("scala-doc-tool"), correlator = None)
20+
val input = DependencySnapshotInput(
21+
None,
22+
Vector.empty,
23+
ignoredConfigs = Vector("scala-doc-tool"),
24+
correlator = None,
25+
shaOverride = None,
26+
refOverride = None,
27+
manifestOverride = None
28+
)
2129
StateTransform(state => state.put(githubSnapshotInputKey, input))
2230
}
2331

sbt-plugin/src/sbt-test/dependency-manifest/ignore-test/build.sbt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,15 @@ inThisBuild(
1717
)
1818

1919
Global / ignoreTestConfig := {
20-
val input = DependencySnapshotInput(None, Vector.empty, ignoredConfigs = Vector("test"), correlator = None)
20+
val input = DependencySnapshotInput(
21+
None,
22+
Vector.empty,
23+
ignoredConfigs = Vector("test"),
24+
correlator = None,
25+
shaOverride = None,
26+
refOverride = None,
27+
manifestOverride = None
28+
)
2129
StateTransform(state => state.put(githubSnapshotInputKey, input))
2230
}
2331

0 commit comments

Comments
 (0)