diff options
Diffstat (limited to 'build.sbt')
-rw-r--r-- | build.sbt | 38 |
1 files changed, 30 insertions, 8 deletions
@@ -1,16 +1,38 @@ | |||
1 | //import Dependencies._ | 1 | import Dependencies._ |
2 | 2 | ||
3 | ThisBuild / scalaVersion := "2.13.1" | 3 | ThisBuild / scalaVersion := "2.13.3" |
4 | ThisBuild / version := "0.1.0" | 4 | ThisBuild / version := "0.1.0" |
5 | //ThisBuild / organization := "com.example" | 5 | ThisBuild / organization := "uk.ac.ox.cs.rsacomb" |
6 | //ThisBuild / organizationName := "example" | 6 | ThisBuild / organizationName := "Department of Computer Science - University of Oxford" |
7 | ThisBuild / organizationHomepage := Some(url("https://www.cs.ox.ac.uk")) | ||
8 | |||
9 | ThisBuild / 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 | |||
24 | ThisBuild / 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")) | ||
26 | ThisBuild / homepage := Some(url("https://github.com/KRR-Oxford/RSA-combined-approach")) | ||
7 | 27 | ||
8 | lazy val root = (project in file(".")) | 28 | lazy 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 | ) |