blob: 2e1c384999a388ab13c7c8897aa8ba38e39c7c6c (
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(
"org.scalatest" %% "scalatest" % "3.1.0" % "test",
"net.sourceforge.owlapi" % "owlapi-apibinding" % "5.1.13"
)
)
|