aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorFederico Igne <git@federicoigne.com>2021-10-04 18:20:50 +0100
committerFederico Igne <git@federicoigne.com>2021-10-04 18:20:50 +0100
commit0af96f42fc0d272257df83a43b4c6e48e52c1dff (patch)
tree580db98de32623f6e3ba399e475dcef0d6993e66 /build.sbt
parent0fdc1f692bb41f9941f6ea4f32ef8c2948a515f7 (diff)
parentc86e7d32420adcc05546efa45b21e0e31d0f6c90 (diff)
downloadRSAComb-0af96f42fc0d272257df83a43b4c6e48e52c1dff.tar.gz
RSAComb-0af96f42fc0d272257df83a43b4c6e48e52c1dff.zip
Merge branch 'upperbound' into develop
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt6
1 files changed, 4 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index bf44744..0603da9 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,7 +1,7 @@
1import Dependencies._ 1import Dependencies._
2 2
3ThisBuild / scalaVersion := "2.13.4" 3ThisBuild / scalaVersion := "2.13.4"
4ThisBuild / version := "0.1.0" 4ThisBuild / version := "0.2.0"
5ThisBuild / organization := "uk.ac.ox.cs.rsacomb" 5ThisBuild / organization := "uk.ac.ox.cs.rsacomb"
6ThisBuild / organizationName := "Department of Computer Science - University of Oxford" 6ThisBuild / organizationName := "Department of Computer Science - University of Oxford"
7ThisBuild / organizationHomepage := Some(url("https://www.cs.ox.ac.uk")) 7ThisBuild / organizationHomepage := Some(url("https://www.cs.ox.ac.uk"))
@@ -35,7 +35,9 @@ lazy val root = (project in file("."))
35 scalatestFlatSpec % Test, 35 scalatestFlatSpec % Test,
36 scalatestShouldMatchers % Test, 36 scalatestShouldMatchers % Test,
37 apibinding, 37 apibinding,
38 graphcore 38 graphcore,
39 ujson,
40 oslib
39 ) 41 )
40 ) 42 )
41 43