-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.sbt
67 lines (62 loc) · 2.44 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
scalafmt: {
style = defaultWithAlign
maxColumn = 150
align.tokens = [
{ code = "=>", owner = "Case" }
{ code = "?", owner = "Case" }
{ code = "extends", owner = "Defn.(Class|Trait|Object)" }
{ code = "//", owner = ".*" }
{ code = "{", owner = "Template" }
{ code = "}", owner = "Template" }
{ code = ":=", owner = "Term.ApplyInfix" }
{ code = "++=", owner = "Term.ApplyInfix" }
{ code = "+=", owner = "Term.ApplyInfix" }
{ code = "%", owner = "Term.ApplyInfix" }
{ code = "%%", owner = "Term.ApplyInfix" }
{ code = "%%%", owner = "Term.ApplyInfix" }
{ code = "->", owner = "Term.ApplyInfix" }
{ code = "?", owner = "Term.ApplyInfix" }
{ code = "<-", owner = "Enumerator.Generator" }
{ code = "?", owner = "Enumerator.Generator" }
{ code = "=", owner = "(Enumerator.Val|Defn.(Va(l|r)|Def|Type))" }
]
}
*/
val nshVersion = "1.0.3"
lazy val neuroshapes = "ch.epfl.bluebrain.nexus" %% "neuroshapes" % nshVersion
lazy val bbpschemas = project
.in(file("."))
.settings(
name := "bbp-schemas",
moduleName := "bbp-schemas",
resolvers += Resolver.bintrayRepo("neuroshapes", "maven"),
resolvers += Resolver.bintrayRepo("bbp", "nexus-releases"),
resolvers += Resolver.bintrayRepo("bogdanromanx", "maven"),
libraryDependencies ++= Seq(
neuroshapes
)
)
inThisBuild(
Seq(
bintrayOmitLicense := true,
homepage := Some(url("https://incf.github.io/neuroshapes")),
licenses := Seq("Attribution" -> url("https://github.com/BlueBrain/nexus-bbp-domains/blob/master/LICENSE")),
developers := List(
Developer("MFSY", "Mohameth François Sy", "noreply@epfl.ch", url("https://incf.github.io/neuroshapes/")),
Developer("annakristinkaufmann", "Anna-Kristin Kaufmann", "noreply@epfl.ch", url("https://incf.github.io/neuroshapes/")),
Developer("huanxiang", "Lu Huanxiang", "noreply@epfl.ch", url("https://incf.github.io/neuroshapes/"))
),
scmInfo := Some(ScmInfo(url("https://github.com/BlueBrain/nexus-bbp-domains"), "scm:git:git@github.com:BlueBrain/nexus-bbp-domains.git")),
// These are the sbt-release-early settings to configure
releaseEarlyWith := BintrayPublisher,
releaseEarlyNoGpg := true,
releaseEarlyEnableSyncToMaven := false
)
)
lazy val noPublish = Seq(
publishLocal := {},
publish := {},
publishArtifact := false
)
addCommandAlias("review", ";clean;test")