Port Make credential tests intransitive

This commit is contained in:
Eugene Yokota 2024-12-16 22:15:18 -05:00
parent 3d86f30837
commit 5ece24ad53
4 changed files with 4 additions and 4 deletions

View File

@ -17,4 +17,4 @@ csrExtraCredentials += {
lmcoursier.credentials.FileCredentials(dest.toString)
}
libraryDependencies += "com.abc" % "test" % "0.1"
libraryDependencies += ("com.abc" % "test" % "0.1").intransitive()

View File

@ -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()

View File

@ -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()

View File

@ -9,4 +9,4 @@ credentials += Credentials(
sys.env("TEST_REPOSITORY_PASSWORD")
)
libraryDependencies += "com.abc" % "test" % "0.1"
libraryDependencies += ("com.abc" % "test" % "0.1").intransitive()