Skip to content

Commit

Permalink
Used sbt-nexus-workbench v0.3.2 (#153)
Browse files Browse the repository at this point in the history
- ability to collect resources (schemas, contexts) in one directory.
- ability to replace {{base}} with a fully qualified uri
- because of the used upstream validator, sh:qualifiedValueShape is not supported.
  • Loading branch information
MFSY authored Aug 7, 2018
1 parent 235393d commit dd8b734
Show file tree
Hide file tree
Showing 15 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ lazy val prov = "ch.epfl.bluebrain.nexus" %% "nexus-prov" % provV
lazy val commonsSchemas = "ch.epfl.bluebrain.nexus" %% "commons-schemas" % commonsVersion
lazy val kgSchemas = "ch.epfl.bluebrain.nexus" %% "kg-schemas" % kgVersion


lazy val core = project
.in(file("modules/core"))
.enablePlugins(WorkbenchPlugin)
Expand Down Expand Up @@ -101,6 +100,7 @@ lazy val simulation = project
moduleName := "nsg-simulation-schemas"
)


lazy val root = project
.in(file("."))
.settings(name := "nsg-schemas", moduleName := "nsg-schemas")
Expand All @@ -110,7 +110,7 @@ lazy val root = project
lazy val common = Seq(
scalacOptions in (Compile, console) ~= (_ filterNot (_ == "-Xfatal-warnings")),
autoScalaLibrary := false,
workbenchVersion := "0.2.2",
workbenchVersion := "0.3.2",
bintrayOmitLicense := true,
homepage := Some(url("https://github.com/INCF/neuroshapes")),
licenses := Seq("CC-4.0" -> url("https://github.com/INCF/neuroshapes/blob/master/LICENSE")),
Expand Down
5 changes: 3 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
resolvers += Resolver.bintrayRepo("bogdanromanx", "maven") // required until sbt-bintray is released
resolvers += Resolver.bintrayRepo("bbp", "nexus-releases")

addSbtPlugin("ch.epfl.bluebrain.nexus" % "sbt-nexus" % "0.6.2")
addSbtPlugin("ch.epfl.bluebrain.nexus" % "sbt-nexus-workbench" % "0.2.2")
addSbtPlugin("ch.epfl.bluebrain.nexus" % "sbt-nexus" % "0.10.7")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.7.0")
addSbtPlugin("ch.epfl.bluebrain.nexus" % "sbt-nexus-workbench" % "0.3.2")

0 comments on commit dd8b734

Please sign in to comment.