blob: 040f7c33f4dd9a266b22e4e7953984b88493eee7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
import Dependencies._
ThisBuild / scalaVersion := "2.13.3"
ThisBuild / version := "0.1.0"
ThisBuild / organization := "uk.ac.ox.cs.rsacomb"
ThisBuild / organizationName := "Department of Computer Science - University of Oxford"
ThisBuild / organizationHomepage := Some(url("https://www.cs.ox.ac.uk"))
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/KRR-Oxford/RSA-combined-approach"),
"scm:git@github.com:KRR-Oxford/RSA-combined-approach.git"
)
)
// ThisBuild / developers := List(
// Developer(
// id = "Your identifier",
// name = "Your Name",
// email = "your@email",
// url = url("http://your.url")
// )
// )
ThisBuild / description := "Re-implementation of the combined approach for CQ answering over RSA ontologies."
// ThisBuild / licenses := List("Apache 2" -> new URL("http://www.apache.org/licenses/LICENSE-2.0.txt"))
ThisBuild / homepage := Some(url("https://github.com/KRR-Oxford/RSA-combined-approach"))
lazy val root = (project in file("."))
.settings(
name := "RSAComb",
libraryDependencies ++= Seq(
scalatest % Test,
scalatestFlatSpec % Test,
scalatestShouldMatchers % Test,
apibinding,
graphcore
)
)
|