mirror of https://github.com/sbt/sbt.git
Add echo application
Simply echoes its arguments - for testing purposes
This commit is contained in:
parent
e33ab63089
commit
23ea3ff6fa
|
|
@ -479,6 +479,9 @@ lazy val okhttp = project
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
lazy val echo = project
|
||||||
|
.settings(commonSettings)
|
||||||
|
|
||||||
lazy val jvm = project
|
lazy val jvm = project
|
||||||
.aggregate(
|
.aggregate(
|
||||||
coreJvm,
|
coreJvm,
|
||||||
|
|
@ -491,7 +494,8 @@ lazy val jvm = project
|
||||||
`sbt-launcher`,
|
`sbt-launcher`,
|
||||||
doc,
|
doc,
|
||||||
`http-server`,
|
`http-server`,
|
||||||
okhttp
|
okhttp,
|
||||||
|
echo
|
||||||
)
|
)
|
||||||
.settings(commonSettings)
|
.settings(commonSettings)
|
||||||
.settings(noPublishSettings)
|
.settings(noPublishSettings)
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
|
||||||
|
object Echo {
|
||||||
|
def main(args: Array[String]): Unit =
|
||||||
|
println(args.mkString(" "))
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue