-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
37 lines (24 loc) · 978 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
organization := "org.adada"
name := "ada-dream-single-cell-challenge"
version := "0.1.0"
description := "Ada extension for Single Cell Transcriptomics DREAM Challenge containing a few handy runnables/scripts."
isSnapshot := false
scalaVersion := "2.11.12"
resolvers ++= Seq(
Resolver.mavenLocal
)
libraryDependencies ++= Seq(
"org.adada" %% "ada-server" % "0.8.1"
)
// POM settings for Sonatype
homepage := Some(url("https://ada-discovery.github.io"))
publishMavenStyle := true
scmInfo := Some(ScmInfo(url("https://github.com/ada-discovery/ada-dream-single-cell-challenge"), "scm:[email protected]:ada-discovery/ada-dream-single-cell-challenge.git"))
developers := List(Developer("bnd", "Peter Banda", "[email protected]", url("https://peterbanda.net")))
licenses += "Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
publishTo := Some(
if (isSnapshot.value)
Opts.resolver.sonatypeSnapshots
else
Opts.resolver.sonatypeStaging
)