Skip to content

Commit 4c1976b

Browse files
committed
Remove Resolver.mavenLocal resolver from build definition.
It was added in scoverage@2ad31f5, but it's not required.
1 parent 04716e2 commit 4c1976b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

build.sbt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ sbtPlugin := true
77
scalacOptions := Seq("-unchecked", "-deprecation", "-feature", "-encoding", "utf8")
88

99
resolvers ++= {
10-
if (isSnapshot.value) Seq(Resolver.mavenLocal, Resolver.sonatypeRepo("snapshots"))
11-
else Seq.empty
10+
if (isSnapshot.value) Seq(Resolver.sonatypeRepo("snapshots")) else Nil
1211
}
1312

1413
libraryDependencies += "org.scoverage" %% "scalac-scoverage-plugin" % "1.2.0-SNAPSHOT"

0 commit comments

Comments
 (0)