aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorvlad <vlad@drivergrp.com>2016-07-15 19:41:26 -0400
committervlad <vlad@drivergrp.com>2016-07-15 19:41:26 -0400
commitc0d574dc6134e4f406875ea5a1301ba46602a6ec (patch)
tree606a56d184bd8c4d67f98b5aa3fafa3640a8190f /project
downloaddriver-core-c0d574dc6134e4f406875ea5a1301ba46602a6ec.tar.gz
driver-core-c0d574dc6134e4f406875ea5a1301ba46602a6ec.tar.bz2
driver-core-c0d574dc6134e4f406875ea5a1301ba46602a6ec.zip
Initial commit with standard lib, might be used a example of cake
Diffstat (limited to 'project')
-rw-r--r--project/.sbtserver3
-rw-r--r--project/.sbtserver.lock0
-rw-r--r--project/Build.scala41
-rw-r--r--project/build.properties4
-rw-r--r--project/plugins.sbt0
-rw-r--r--project/sbt-ui.sbt3
6 files changed, 51 insertions, 0 deletions
diff --git a/project/.sbtserver b/project/.sbtserver
new file mode 100644
index 0000000..8dcde7c
--- /dev/null
+++ b/project/.sbtserver
@@ -0,0 +1,3 @@
+#Server Startup at 2016-07-06T23:09+0000
+#Wed Jul 06 16:09:57 PDT 2016
+server.uri=http\://0.0.0.0\:58105
diff --git a/project/.sbtserver.lock b/project/.sbtserver.lock
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/project/.sbtserver.lock
diff --git a/project/Build.scala b/project/Build.scala
new file mode 100644
index 0000000..60ae493
--- /dev/null
+++ b/project/Build.scala
@@ -0,0 +1,41 @@
+import sbt._
+import Keys._
+
+object BuildSettings {
+ val buildSettings = Defaults.coreDefaultSettings ++ Seq (
+ organization := "com.drivergrp",
+ name := "core",
+ version := "0.0.1",
+ scalaVersion := "2.11.6",
+ scalacOptions := Seq("-unchecked", "-deprecation", "-feature", "-encoding", "utf8"),
+ fork in run := true
+ )
+}
+
+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",
+ "com.typesafe.slick" %% "slick" % "3.0.0",
+ "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"
+ )
+
+ lazy val core = Project (
+ "core",
+ file ("."),
+ settings = buildSettings ++ Seq (libraryDependencies ++= dependencies)
+ )
+} \ No newline at end of file
diff --git a/project/build.properties b/project/build.properties
new file mode 100644
index 0000000..4c003f6
--- /dev/null
+++ b/project/build.properties
@@ -0,0 +1,4 @@
+#Activator-generated Properties
+#Wed Jul 06 16:08:49 PDT 2016
+template.uuid=a675a7df-bee3-48df-9eaa-688d99e5814e
+sbt.version=0.13.8
diff --git a/project/plugins.sbt b/project/plugins.sbt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/project/plugins.sbt
diff --git a/project/sbt-ui.sbt b/project/sbt-ui.sbt
new file mode 100644
index 0000000..7c28b97
--- /dev/null
+++ b/project/sbt-ui.sbt
@@ -0,0 +1,3 @@
+// This plugin represents functionality that is to be added to sbt in the future
+
+addSbtPlugin("org.scala-sbt" % "sbt-core-next" % "0.1.1") \ No newline at end of file