mirror of https://github.com/sbt/sbt.git
whitespace change due to scalariform kicking in
This commit is contained in:
parent
e1c2c435d1
commit
efb68cf6bf
|
|
@ -17,7 +17,7 @@ object Release extends Build {
|
||||||
|
|
||||||
// Add credentials if they exist.
|
// Add credentials if they exist.
|
||||||
def lameCredentialSettings: Seq[Setting[_]] =
|
def lameCredentialSettings: Seq[Setting[_]] =
|
||||||
if(CredentialsFile.exists) Seq(credentials in ThisBuild += Credentials(CredentialsFile))
|
if (CredentialsFile.exists) Seq(credentials in ThisBuild += Credentials(CredentialsFile))
|
||||||
else Nil
|
else Nil
|
||||||
def releaseSettings(nonRoots: => Seq[ProjectReference], launcher: TaskKey[File]): Seq[Setting[_]] = Seq(
|
def releaseSettings(nonRoots: => Seq[ProjectReference], launcher: TaskKey[File]): Seq[Setting[_]] = Seq(
|
||||||
publishTo in ThisBuild <<= publishResolver,
|
publishTo in ThisBuild <<= publishResolver,
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ object Sbt extends Build {
|
||||||
|
|
||||||
// Aggregate task for 2.11
|
// Aggregate task for 2.11
|
||||||
private def lameAgregateTask(task: String): String =
|
private def lameAgregateTask(task: String): String =
|
||||||
s"all control/$task collections/$task io/$task completion/$task"
|
s"all control/$task collections/$task io/$task completion/$task"
|
||||||
def buildSettings = Seq(
|
def buildSettings = Seq(
|
||||||
organization := "org.scala-sbt",
|
organization := "org.scala-sbt",
|
||||||
version := "0.13.6-SNAPSHOT",
|
version := "0.13.6-SNAPSHOT",
|
||||||
|
|
@ -57,15 +57,15 @@ object Sbt extends Build {
|
||||||
},
|
},
|
||||||
commands += Command.command("release-sbt-local") { state =>
|
commands += Command.command("release-sbt-local") { state =>
|
||||||
"publishLocal" ::
|
"publishLocal" ::
|
||||||
"setupBuildScala211" ::
|
"setupBuildScala211" ::
|
||||||
lameAgregateTask("publishLocal") ::
|
lameAgregateTask("publishLocal") ::
|
||||||
"reload" ::
|
"reload" ::
|
||||||
state
|
state
|
||||||
},
|
},
|
||||||
commands += Command.command("release-sbt") { state =>
|
commands += Command.command("release-sbt") { state =>
|
||||||
// TODO - Any sort of validation
|
// TODO - Any sort of validation
|
||||||
"checkCredentials" ::
|
"checkCredentials" ::
|
||||||
"publishSigned" ::
|
"publishSigned" ::
|
||||||
"publishLauncher" ::
|
"publishLauncher" ::
|
||||||
"release-libs-211" ::
|
"release-libs-211" ::
|
||||||
state
|
state
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue