Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,23 @@ lazy val simulation = project
moduleName := "nsg-simulation-schemas"
)

lazy val literatureannotation = project
.in(file("modules/literatureannotation"))
.enablePlugins(WorkbenchPlugin)
.disablePlugins(ScapegoatSbtPlugin, DocumentationPlugin)
.dependsOn(core)
.settings(common)
.settings(
name := "nsg-literatureannotation-schemas",
moduleName := "nsg-literatureannotation-schemas"
)


lazy val root = project
.in(file("."))
.settings(name := "nsg-schemas", moduleName := "nsg-schemas")
.settings(common, noPublish)
.aggregate(core, experiment, atlas, morphology, electrophysiology, simulation, nexusschema,nsgcommons)
.aggregate(core, experiment, atlas, morphology, electrophysiology, simulation, nexusschema, nsgcommons, literatureannotation)

lazy val common = Seq(
scalacOptions in (Compile, console) ~= (_ filterNot (_ == "-Xfatal-warnings")),
Expand Down
Loading