aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt15
1 files changed, 15 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
new file mode 100644
index 0000000..e3df19c
--- /dev/null
+++ b/build.sbt
@@ -0,0 +1,15 @@
1import Dependencies._
2
3ThisBuild / scalaVersion := "2.13.1"
4ThisBuild / version := "0.1.0"
5//ThisBuild / organization := "com.example"
6//ThisBuild / organizationName := "example"
7
8lazy val root = (project in file("."))
9 .settings(
10 name := "RSAComb",
11 libraryDependencies ++= Seq(
12 scalaTest % Test,
13 "net.sourceforge.owlapi" % "owlapi-apibinding" % "5.1.13"
14 )
15 )