diff --git a/yo-demo/build.sbt b/yo-demo/build.sbt new file mode 100644 index 0000000..d23b2ed --- /dev/null +++ b/yo-demo/build.sbt @@ -0,0 +1,11 @@ +import com.tuplejump.sbt.yeoman.Yeoman + +name := "yo-demo" + +version := "2.0.0" + +scalaVersion := "2.11.6" + +lazy val root = (project in file(".")).enablePlugins(PlayScala) + +Yeoman.yeomanSettings ++ Yeoman.withTemplates diff --git a/yo-demo/project/Build.scala b/yo-demo/project/Build.scala deleted file mode 100644 index 1c162a8..0000000 --- a/yo-demo/project/Build.scala +++ /dev/null @@ -1,25 +0,0 @@ -import sbt._ -import Keys._ -import com.tuplejump.sbt.yeoman.Yeoman -import play.sbt.Play.autoImport._ -import PlayKeys._ - -object ApplicationBuild extends Build { - - val appName = "yo-demo" - val appVersion = "2.0.0" - - val appDependencies = Seq( - // Add your project dependencies here, - ) - - val appSettings = Seq(version := appVersion, libraryDependencies ++= appDependencies, scalaVersion := "2.11.6") ++ - Yeoman.yeomanSettings ++ - Yeoman.withTemplates - - val main = Project(appName, file(".")).enablePlugins(play.PlayScala).settings( - // Add your own project settings here - appSettings: _* - ) - -}