-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
35 lines (30 loc) · 836 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name := "GetQuill"
version := "1.0"
scalaVersion := "2.11.8"
val buildSettings = Defaults.coreDefaultSettings ++ Seq (
organization := "com.github.nikitamelnikov",
version := "0.0.1",
scalaVersion := "2.11.8",
scalacOptions += ""
)
lazy val root: Project = Project(
"root",
file("."),
settings = buildSettings ++ Seq(
libraryDependencies ++= Seq(
"org.postgresql" % "postgresql" % "9.4.1208",
"io.getquill" %% "quill-async" % "0.8.0"
)
)
) dependsOn(macros)
lazy val macros: Project = Project(
"macros",
file("macros"),
settings = buildSettings ++ Seq(
libraryDependencies <+= (scalaVersion)("org.scala-lang" % "scala-compiler" % _),
libraryDependencies ++= Seq(
"org.postgresql" % "postgresql" % "9.4.1208",
"io.getquill" %% "quill-async" % "0.8.0"
)
)
)