blob: 34e5232a11de67bd23a4870a4ed90469b9d69eb4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//import Dependencies._
ThisBuild / scalaVersion := "2.13.1"
ThisBuild / version := "0.1.0"
//ThisBuild / organization := "com.example"
//ThisBuild / organizationName := "example"
lazy val root = (project in file("."))
.settings(
name := "RSAComb",
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.1.0" % "test",
"net.sourceforge.owlapi" % "owlapi-apibinding" % "5.1.13",
"org.scala-graph" %% "graph-core" % "1.13.2"
)
)
|