-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
27 lines (24 loc) · 879 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
import _root_.io.circe.Json
lazy val `hca-ingest` = project
.in(file("."))
.aggregate(`hca-schema`, `hca-transformation-pipeline`)
.settings(publish / skip := true)
lazy val `hca-schema` = project
.in(file("schema"))
.enablePlugins(MonsterJadeDatasetPlugin)
.settings(
jadeTablePackage := "org.broadinstitute.monster.hca.jadeschema.table",
jadeTableFragmentPackage := "org.broadinstitute.monster.hca.jadeschema.fragment",
jadeStructPackage := "org.broadinstitute.monster.hca.jadeschema.struct"
)
lazy val `hca-transformation-pipeline` = project
.in(file("transformation"))
.enablePlugins(MonsterScioPipelinePlugin)
.settings(
resolvers += "jitpack".at("https://jitpack.io"),
libraryDependencies ++= Seq(
"com.lihaoyi" %% "requests" % "0.5.1",
"io.circe" %% "circe-json-schema" % "0.1.0"
)
)
.dependsOn(`hca-schema`)