aboutsummaryrefslogtreecommitdiff
path: root/src/sbt-test/sbt-settings/service/src/main/scala/Main.scala
blob: 08a8f3fdc47848fc1bf1d5defffea60e9182899d (plain) (blame)
1
2
3
4
5
6
7
import java.nio.file.{Files, Paths}

object Main extends App {
  val version = xyz.driver.BuildInfo.version
  Files.write(Paths.get("out.txt"), s"$version\n".getBytes("utf-8"))
  println(s"hello world ($version)")
}