-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
18 lines (16 loc) · 1017 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Dependencies._
name := "theta"
crossScalaVersions := List("2.13.4", "2.12.4")
organization := "io.citrine"
organizationName := "Citrine Informatics"
homepage := Some(url("https://github.com/CitrineInformatics/theta"))
developers := List(Developer(id="maxhutch", name="Max Hutchinson", email="[email protected]", url=url("https://github.com/maxhutch")))
description := "A portable timing library"
licenses += "Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt")
scmInfo := Some(ScmInfo(url("https://github.com/CitrineInformatics/theta"), "scm:[email protected]:CitrineInformatics/theta.git"))
sonatypeCredentialHost := "s01.oss.sonatype.org"
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"
pomIncludeRepository := { _ => false }
libraryDependencies ++= thetaDeps
javaOptions ++= sys.env.getOrElse("JAVA_OPTS", "").split(" ").toSeq
Test / parallelExecution := false