-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
39 lines (25 loc) · 887 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
36
37
38
39
organization in ThisBuild := "com.github.dwhjames"
licenses in ThisBuild += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0"))
version in ThisBuild := "0.7-RC1"
scalacOptions in ThisBuild ++= Seq("-deprecation", "-feature", "-unchecked")
resolvers in ThisBuild ++= Seq(
Resolver.typesafeRepo("releases"),
Resolver.bintrayRepo("dwhjames", "maven"),
"clojars" at "https://clojars.org/repo"
)
lazy val datomiscaPlayJson = project in file("datomisca-play-json")
lazy val datomiscaPlay22Json = (
project
in file("datomisca-play22-json")
settings (
sourceDirectory <<= sourceDirectory in datomiscaPlayJson
)
)
lazy val datomiscaPlayPlugin = project in file("datomisca-play-plugin")
lazy val datomiscaPlay22Plugin = (
project
in file("datomisca-play22-plugin")
settings (
sourceDirectory <<= sourceDirectory in datomiscaPlayPlugin
)
)