aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt38
1 files changed, 30 insertions, 8 deletions
diff --git a/build.sbt b/build.sbt
index 34e5232..040f7c3 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,16 +1,38 @@
1//import Dependencies._ 1import Dependencies._
2 2
3ThisBuild / scalaVersion := "2.13.1" 3ThisBuild / scalaVersion := "2.13.3"
4ThisBuild / version := "0.1.0" 4ThisBuild / version := "0.1.0"
5//ThisBuild / organization := "com.example" 5ThisBuild / organization := "uk.ac.ox.cs.rsacomb"
6//ThisBuild / organizationName := "example" 6ThisBuild / organizationName := "Department of Computer Science - University of Oxford"
7ThisBuild / organizationHomepage := Some(url("https://www.cs.ox.ac.uk"))
8
9ThisBuild / scmInfo := Some(
10 ScmInfo(
11 url("https://github.com/KRR-Oxford/RSA-combined-approach"),
12 "scm:git@github.com:KRR-Oxford/RSA-combined-approach.git"
13 )
14)
15// ThisBuild / developers := List(
16// Developer(
17// id = "Your identifier",
18// name = "Your Name",
19// email = "your@email",
20// url = url("http://your.url")
21// )
22// )
23
24ThisBuild / description := "Re-implementation of the combined approach for CQ answering over RSA ontologies."
25// ThisBuild / licenses := List("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt"))
26ThisBuild / homepage := Some(url("https://github.com/KRR-Oxford/RSA-combined-approach"))
7 27
8lazy val root = (project in file(".")) 28lazy val root = (project in file("."))
9 .settings( 29 .settings(
10 name := "RSAComb", 30 name := "RSAComb",
11 libraryDependencies ++= Seq( 31 libraryDependencies ++= Seq(
12 "org.scalatest" %% "scalatest" % "3.1.0" % "test", 32 scalatest % Test,
13 "net.sourceforge.owlapi" % "owlapi-apibinding" % "5.1.13", 33 scalatestFlatSpec % Test,
14 "org.scala-graph" %% "graph-core" % "1.13.2" 34 scalatestShouldMatchers % Test,
35 apibinding,
36 graphcore
15 ) 37 )
16 ) 38 )