Updated Quick Configuration Examples (markdown)

ndarilek 2011-06-18 16:47:15 -07:00
parent d45ed34164
commit 4e6b08c523
1 changed files with 8 additions and 0 deletions

@ -166,4 +166,12 @@ credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
// Directly specify credentials for publishing.
credentials += Credentials("Sonatype Nexus Repository Manager", "nexus.scala-tools.org", "admin", "admin123")
// Set a key based partially on a separate val.
{
val dependencyVersion = "1.0.0"
seq(
libraryDependencies += "my.organization" % "mylib" % dependencyVersion
)
}
```