blob: e3df19c56e334af8748af9fd22dca79543160a55 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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(
scalaTest % Test,
"net.sourceforge.owlapi" % "owlapi-apibinding" % "5.1.13"
)
)
|