Skip to content

Instantly share code, notes, and snippets.

@jeffwilde
Created December 1, 2015 20:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffwilde/1d7e19d2f1f7bba9d616 to your computer and use it in GitHub Desktop.
Save jeffwilde/1d7e19d2f1f7bba9d616 to your computer and use it in GitHub Desktop.
ensime test
lazy val root = (project in file(".")).
settings(
name := "hello",
version := "1.0",
scalaVersion := "2.11.7"
)
object Hi {
def main(args: Array[String]) = {
println("Hi!")
}
}
addSbtPlugin("org.ensime" % "ensime-sbt" % "0.2.1")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment