Add echo application

Simply echoes its arguments - for testing purposes
This commit is contained in:
Alexandre Archambault 2017-03-14 15:39:00 +01:00
parent e33ab63089
commit 23ea3ff6fa
2 changed files with 10 additions and 1 deletions

View File

@ -479,6 +479,9 @@ lazy val okhttp = project
)
)
lazy val echo = project
.settings(commonSettings)
lazy val jvm = project
.aggregate(
coreJvm,
@ -491,7 +494,8 @@ lazy val jvm = project
`sbt-launcher`,
doc,
`http-server`,
okhttp
okhttp,
echo
)
.settings(commonSettings)
.settings(noPublishSettings)

View File

@ -0,0 +1,5 @@
object Echo {
def main(args: Array[String]): Unit =
println(args.mkString(" "))
}