forked from improving-app/riddl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
19 lines (19 loc) · 869 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Global / onChangedBuildSource := ReloadOnSourceChanges
scalaVersion := "3.4.2"
lazy val riddl_version = "0.51.0"
libraryDependencies ++= Seq(
"com.ossuminc" %% "riddl-testkit" % riddl_version % "test",
"com.ossuminc" %% "riddl-hugo" % riddl_version % "test",
"org.scalactic" %% "scalactic" % "3.2.9" % "test",
"org.scalatest" %% "scalatest" % "3.2.9" % "test"
)
enablePlugins(RiddlSbtPlugin)
riddlcOptions :=
Seq("--show-times", "from", "src/main/riddl/ImprovingApp.conf", "hugo")
riddlcMinVersion := s"${riddl_version}"
riddlcPath := file(
// NOTE: Set this to your local path which will always have this portion
// NOTE: of the path as a constant: riddl/riddlc/target/universal/stage/bin/riddlc
// NOTE: You must "sbt stage" in the riddl/riddlc directory for this to work
"/Users/reid/Code/ossuminc/riddl/riddlc/target/universal/stage/bin/riddlc"
)