Sync README.md with doc/README.md

Recent changes in MavenRepository were not reflected in the current
README.md
This commit is contained in:
Alexandre Archambault 2017-03-20 00:01:36 +01:00
parent 14f297b4f7
commit 2532453266
1 changed files with 2 additions and 2 deletions

View File

@ -440,7 +440,7 @@ scala> val repositories = Seq(
| Cache.ivy2Local, | Cache.ivy2Local,
| MavenRepository("https://repo1.maven.org/maven2") | MavenRepository("https://repo1.maven.org/maven2")
| ) | )
repositories: Seq[coursier.core.Repository] = List(IvyRepository(Pattern(List(Const(file://), Var(user.home), Const(/local/), Var(organisation), Const(/), Var(module), Const(/), Opt(WrappedArray(Const(scala_), Var(scalaVersion), Const(/))), Opt(WrappedArray(Const(sbt_), Var(sbtVersion), Const(/))), Var(revision), Const(/), Var(type), Const(s/), Var(artifact), Opt(WrappedArray(Const(-), Var(classifier))), Const(.), Var(ext))),None,None,true,true,true,true,None), MavenRepository(https://repo1.maven.org/maven2,None,false,None,Set(org.apache.zookeeper:zookeeper))) repositories: Seq[coursier.core.Repository] = List(IvyRepository(Pattern(List(Const(file://), Var(user.home), Const(/local/), Var(organisation), Const(/), Var(module), Const(/), Opt(WrappedArray(Const(scala_), Var(scalaVersion), Const(/))), Opt(WrappedArray(Const(sbt_), Var(sbtVersion), Const(/))), Var(revision), Const(/), Var(type), Const(s/), Var(artifact), Opt(WrappedArray(Const(-), Var(classifier))), Const(.), Var(ext))),None,None,true,true,true,true,None), MavenRepository(https://repo1.maven.org/maven2,None,false,None))
``` ```
The first one, `Cache.ivy2Local`, is defined in `coursier.Cache`, itself from the `coursier-cache` module that The first one, `Cache.ivy2Local`, is defined in `coursier.Cache`, itself from the `coursier-cache` module that
we added above. As we can see, it is an `IvyRepository`, picking things under `~/.ivy2/local`. An `IvyRepository` we added above. As we can see, it is an `IvyRepository`, picking things under `~/.ivy2/local`. An `IvyRepository`
@ -467,7 +467,7 @@ scala> MavenRepository(
| "https://nexus.corp.com/content/repositories/releases", | "https://nexus.corp.com/content/repositories/releases",
| authentication = Some(Authentication("user", "pass")) | authentication = Some(Authentication("user", "pass"))
| ) | )
res6: coursier.maven.MavenRepository = MavenRepository(https://nexus.corp.com/content/repositories/releases,None,false,Some(Authentication(user, *******)),Set(org.apache.zookeeper:zookeeper)) res6: coursier.maven.MavenRepository = MavenRepository(https://nexus.corp.com/content/repositories/releases,None,false,Some(Authentication(user, *******)))
``` ```
Now that we have repositories, we're going to mix these with things from the `coursier-cache` module, Now that we have repositories, we're going to mix these with things from the `coursier-cache` module,