mirror of https://github.com/sbt/sbt.git
Fix bintray resolvers syntax
Example of options that can be supplied to CLI tools:
-r bintray:scalaz/maven
This commit is contained in:
parent
eb4e73fa54
commit
efbcbbf860
|
|
@ -136,7 +136,7 @@ object Parse {
|
|||
else if (s.startsWith("sonatype:"))
|
||||
MavenRepository(s"https://oss.sonatype.org/content/repositories/${s.stripPrefix("sonatype:")}").right
|
||||
else if (s.startsWith("bintray:"))
|
||||
MavenRepository(s"https://dl.bintray.com/${s.stripPrefix("bintray:")}/maven").right
|
||||
MavenRepository(s"https://dl.bintray.com/${s.stripPrefix("bintray:")}").right
|
||||
else if (s.startsWith("typesafe:ivy-"))
|
||||
IvyRepository.fromPattern(
|
||||
(s"https://repo.typesafe.com/typesafe/ivy-" + s.stripPrefix("typesafe:ivy-") + "/") +:
|
||||
|
|
|
|||
Loading…
Reference in New Issue