forked from ScalaCrypto/cryptic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
42 lines (37 loc) · 1.18 KB
/
Copy pathbuild.sbt
File metadata and controls
42 lines (37 loc) · 1.18 KB
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
40
41
42
import Dependencies._
lazy val cryptic = (project in file(".")).
enablePlugins(TutPlugin).
enablePlugins(ParadoxPlugin).
settings(
inThisBuild(List(
organization := "ScalaCrypto",
scalaVersion := "2.12.5",
version := "0.2.0-SNAPSHOT"
)),
name := "cryptic",
paradoxProperties in Compile ++= Map(
"github.base_url" -> s"https://github.com/ScalaCrypto/cryptic/tree/${version.value}"))
.aggregate(core, `serialization-fst`, `crypto-javax`, `crypto-test`)
lazy val core = (project in file("core")).
settings(
name := "core",
libraryDependencies ++= Seq(scalaTest % Test)
)
lazy val `serialization-fst` = (project in file("serialization-fst")).
settings(
name := "serialization-fst",
libraryDependencies ++= Seq(scalaTest % Test, fst)
)
.dependsOn(core)
lazy val `crypto-javax` = (project in file("crypto-javax")).
settings(
name := "crypto-javax",
libraryDependencies ++= Seq(scalaTest % Test)
)
.dependsOn(core)
lazy val `crypto-test` = (project in file("crypto-test")).
settings(
name := "crypto-test",
libraryDependencies ++= Seq(scalaTest % Test)
)
.dependsOn(core, `serialization-fst`, `crypto-javax`)