aboutsummaryrefslogtreecommitdiff
path: root/stage2/BasicBuild.scala
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-03-06 20:05:56 -0500
committerChristopher Vogt <oss.nsp@cvogt.org>2017-03-06 20:05:56 -0500
commit2f7710bf1c34ad8b3720d976e2687fe9b2c8ad83 (patch)
treefdf127b7b6d644717cf4029525b5c6c215015329 /stage2/BasicBuild.scala
parent8c2428dd1947c70f85bf8c6f8dab5765533b68cd (diff)
downloadcbt-2f7710bf1c34ad8b3720d976e2687fe9b2c8ad83.tar.gz
cbt-2f7710bf1c34ad8b3720d976e2687fe9b2c8ad83.tar.bz2
cbt-2f7710bf1c34ad8b3720d976e2687fe9b2c8ad83.zip
return Seq[URL] from publish task and \n separate Seqs in std out
Diffstat (limited to 'stage2/BasicBuild.scala')
-rw-r--r--stage2/BasicBuild.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage2/BasicBuild.scala b/stage2/BasicBuild.scala
index 7e26f9b..0a338b9 100644
--- a/stage2/BasicBuild.scala
+++ b/stage2/BasicBuild.scala
@@ -320,5 +320,5 @@ trait BaseBuild extends BuildInterface with DependencyImplementation with Trigge
@deprecated("use the MultipleScalaVersions plugin instead","")
final def crossScalaVersionsArray = Array(scalaVersion)
- def publish: Unit = ()
+ def publish: Seq[URL] = Seq()
}