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 ) )