Skip to content

Commit

Permalink
Add a more idiomatic way of add settings into the project, it also ma…
Browse files Browse the repository at this point in the history
…kes ensime-vim to work.
  • Loading branch information
Aitor Iturri committed Nov 20, 2016
1 parent 0dfd5b1 commit 61388ee
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/g8/project/$name__Camel$Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@ object $name;format="Camel"$Build extends Build {

lazy val $name;format="camel"$ = Project(
id = "$name;format="norm"$",
base = file("."),
settings = Project.defaultSettings ++ Seq(
base = file(".")).settings(Seq(
name := "$name$",
organization := "$organization$",
version := "$version$",
scalaVersion := "$scala_version$"
// add other settings here
)
)
))
}

0 comments on commit 61388ee

Please sign in to comment.