diff options
author | Federico Igne <federico.igne@cs.ox.ac.uk> | 2020-07-15 17:44:00 +0100 |
---|---|---|
committer | Federico Igne <federico.igne@cs.ox.ac.uk> | 2020-07-15 17:44:00 +0100 |
commit | 58b8d3c11a9deebb40e21c70d0b085d01cada745 (patch) | |
tree | 2c729106e6f32cd2bdc18f8e24adff242f856663 /build.sbt | |
parent | b1e53c0b9f85783c9c6382eb69380b38cd43a566 (diff) | |
download | RSAComb-58b8d3c11a9deebb40e21c70d0b085d01cada745.tar.gz RSAComb-58b8d3c11a9deebb40e21c70d0b085d01cada745.zip |
Add reworked code from previous repo
Diffstat (limited to 'build.sbt')
-rw-r--r-- | build.sbt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt new file mode 100644 index 0000000..e3df19c --- /dev/null +++ b/build.sbt | |||
@@ -0,0 +1,15 @@ | |||
1 | import Dependencies._ | ||
2 | |||
3 | ThisBuild / scalaVersion := "2.13.1" | ||
4 | ThisBuild / version := "0.1.0" | ||
5 | //ThisBuild / organization := "com.example" | ||
6 | //ThisBuild / organizationName := "example" | ||
7 | |||
8 | lazy val root = (project in file(".")) | ||
9 | .settings( | ||
10 | name := "RSAComb", | ||
11 | libraryDependencies ++= Seq( | ||
12 | scalaTest % Test, | ||
13 | "net.sourceforge.owlapi" % "owlapi-apibinding" % "5.1.13" | ||
14 | ) | ||
15 | ) | ||