-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
30 lines (25 loc) · 892 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
28
29
30
val dottyVersion = "3.1.3"
ThisBuild / scalaVersion := dottyVersion
ThisBuild / resolvers += Resolver.bintrayRepo("opencaesar", "oml")
lazy val root = (project in file("."))
.settings(
name := "scala3-bundle-closure",
version := "0.1.0",
Compile / scalacOptions :=
Seq(
"-deprecation",
"-feature",
"-unchecked",
"-language:implicitConversions",
"-Xfatal-warnings",
"-new-syntax"
),
ThisBuild / libraryDependencies ++= Seq(
//"com.github.julien-truffaut" %% "monocle-core" % "3.0.0-M4",
"pl.iterators" % "kebs-tagged_2.13" % "1.9.0",
"io.github.vigoo" %% "clipp-zio" % "0.6.7",
"net.sourceforge.owlapi" % "owlapi-distribution" % "5.1.+",
"io.opencaesar.oml" % "io.opencaesar.oml.dsl" % "0.8.+",
"com.novocode" % "junit-interface" % "0.11" % "test"
)
)