From 001e52f41f6f9fe6740fdd33461f21bb70c4110d Mon Sep 17 00:00:00 2001 From: vlad Date: Wed, 20 Jul 2016 09:38:13 -0400 Subject: Issue#1 Moving from Build.scala to build.sbt --- build.sbt | 48 +++++++++++++++++++++++++++++++++++++++++ project/Build.scala | 62 ----------------------------------------------------- 2 files changed, 48 insertions(+), 62 deletions(-) create mode 100644 build.sbt delete mode 100644 project/Build.scala diff --git a/build.sbt b/build.sbt new file mode 100644 index 0000000..3d2bf16 --- /dev/null +++ b/build.sbt @@ -0,0 +1,48 @@ +import sbt._ +import Keys._ + + +lazy val wartRemoverSettings = Seq( + wartremoverErrors in (Compile, compile) ++= Warts.allBut( + Wart.AsInstanceOf, Wart.Nothing, Wart.Option2Iterable, Wart.ExplicitImplicitTypes, + Wart.Overloading, Wart.DefaultArguments, Wart.ToString, Wart.Any, Wart.Throw) +) + +lazy val compileScalastyle = taskKey[Unit]("compileScalastyle") + +lazy val buildSettings = Defaults.coreDefaultSettings ++ Seq ( + organization := "com.drivergrp", + name := "core", + version := "0.0.1", + scalaVersion := "2.11.8", + scalacOptions := Seq("-unchecked", "-deprecation", "-feature", "-Xlint", "-encoding", "utf8", + "-language:higherKinds", "-language:implicitConversions", "-language:postfixOps", + "-Ywarn-infer-any", "-Ywarn-unused", "-Ywarn-unused-import"), + scalafmtConfig := Some(file(".scalafmt")), + fork in run := true, + compileScalastyle := (scalastyle in Compile).toTask("").value, + (compile in Compile) <<= ((compile in Compile) dependsOn compileScalastyle) +) ++ wartRemoverSettings ++ reformatOnCompileSettings + +lazy val akkaHttpV = "2.4.8" + +lazy val core = (project in file(".")). + settings(buildSettings: _*). + settings( + libraryDependencies ++= Seq( + "com.typesafe.akka" %% "akka-http-core" % akkaHttpV, + "com.typesafe.akka" %% "akka-http-experimental" % akkaHttpV, + "com.typesafe.akka" %% "akka-http-jackson-experimental" % akkaHttpV, + "com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaHttpV, + "com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV, + "org.scalatest" % "scalatest_2.11" % "2.2.1" % "test", + "org.mockito" % "mockito-core" % "1.9.5" % "test", + "com.typesafe.slick" %% "slick" % "3.1.1", + "com.typesafe" % "config" % "1.2.1", + "com.typesafe.scala-logging" %% "scala-logging" % "3.1.0", + "ch.qos.logback" % "logback-classic" % "1.1.3", + "org.slf4j" % "slf4j-nop" % "1.6.4", + "org.scalaz" %% "scalaz-core" % "7.2.4", + "com.github.swagger-akka-http" %% "swagger-akka-http" % "0.7.1", + "com.lihaoyi" %% "acyclic" % "0.1.4" % "provided" + )) diff --git a/project/Build.scala b/project/Build.scala deleted file mode 100644 index 7f82a59..0000000 --- a/project/Build.scala +++ /dev/null @@ -1,62 +0,0 @@ -import sbt._ -import Keys._ -import org.scalafmt.sbt.ScalaFmtPlugin.autoImport._ -import org.scalastyle.sbt.ScalastylePlugin._ -import wartremover._ -import wartremover.WartRemover.autoImport.wartremoverErrors - - -object BuildSettings { - - val wartRemoverSettings = Seq( - wartremoverErrors in (Compile, compile) ++= Warts.allBut( - Wart.AsInstanceOf, Wart.Nothing, Wart.Option2Iterable, Wart.ExplicitImplicitTypes, - Wart.Overloading, Wart.DefaultArguments, Wart.ToString, Wart.Any, Wart.Throw) - ) - - val compileScalastyle = taskKey[Unit]("compileScalastyle") - - val buildSettings = Defaults.coreDefaultSettings ++ Seq ( - organization := "com.drivergrp", - name := "core", - version := "0.0.1", - scalaVersion := "2.11.8", - scalacOptions := Seq("-unchecked", "-deprecation", "-feature", "-Xlint", "-encoding", "utf8", - "-language:higherKinds", "-language:implicitConversions", "-language:postfixOps", - "-Ywarn-infer-any", "-Ywarn-unused", "-Ywarn-unused-import"), - scalafmtConfig := Some(file(".scalafmt")), - fork in run := true, - compileScalastyle := (scalastyle in Compile).toTask("").value, - (compile in Compile) <<= ((compile in Compile) dependsOn compileScalastyle) - ) ++ wartRemoverSettings ++ reformatOnCompileSettings -} - -object DriverBuild extends Build { - import BuildSettings._ - - val akkaHttpV = "2.4.8" - - val dependencies = Seq( - "com.typesafe.akka" %% "akka-http-core" % akkaHttpV, - "com.typesafe.akka" %% "akka-http-experimental" % akkaHttpV, - "com.typesafe.akka" %% "akka-http-jackson-experimental" % akkaHttpV, - "com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaHttpV, - "com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV, - "org.scalatest" % "scalatest_2.11" % "2.2.1" % "test", - "org.mockito" % "mockito-core" % "1.9.5" % "test", - "com.typesafe.slick" %% "slick" % "3.1.1", - "com.typesafe" % "config" % "1.2.1", - "com.typesafe.scala-logging" %% "scala-logging" % "3.1.0", - "ch.qos.logback" % "logback-classic" % "1.1.3", - "org.slf4j" % "slf4j-nop" % "1.6.4", - "org.scalaz" %% "scalaz-core" % "7.2.4", - "com.github.swagger-akka-http" %% "swagger-akka-http" % "0.7.1", - "com.lihaoyi" %% "acyclic" % "0.1.4" % "provided" - ) - - lazy val core = Project ( - "core", - file ("."), - settings = buildSettings ++ Seq (libraryDependencies ++= dependencies) - ) -} \ No newline at end of file -- cgit v1.2.3