mirror of https://github.com/sbt/sbt.git
Port Make credential tests intransitive
This commit is contained in:
parent
3d86f30837
commit
5ece24ad53
|
|
@ -17,4 +17,4 @@ csrExtraCredentials += {
|
|||
lmcoursier.credentials.FileCredentials(dest.toString)
|
||||
}
|
||||
|
||||
libraryDependencies += "com.abc" % "test" % "0.1"
|
||||
libraryDependencies += ("com.abc" % "test" % "0.1").intransitive()
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@ scalaVersion := "2.12.8"
|
|||
|
||||
resolvers += "authenticated" at sys.env("TEST_REPOSITORY")
|
||||
|
||||
libraryDependencies += "com.abc" % "test" % "0.1"
|
||||
libraryDependencies += ("com.abc" % "test" % "0.1").intransitive()
|
||||
|
|
|
|||
|
|
@ -2,4 +2,4 @@ scalaVersion := "2.12.8"
|
|||
|
||||
resolvers += "authenticated" at sys.env("TEST_REPOSITORY")
|
||||
|
||||
libraryDependencies += "com.abc" % "test" % "0.1"
|
||||
libraryDependencies += ("com.abc" % "test" % "0.1").intransitive()
|
||||
|
|
|
|||
|
|
@ -9,4 +9,4 @@ credentials += Credentials(
|
|||
sys.env("TEST_REPOSITORY_PASSWORD")
|
||||
)
|
||||
|
||||
libraryDependencies += "com.abc" % "test" % "0.1"
|
||||
libraryDependencies += ("com.abc" % "test" % "0.1").intransitive()
|
||||
|
|
|
|||
Loading…
Reference in New Issue