-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
56 lines (43 loc) · 1.43 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
name := "splot-core"
organization := "xyz.devfortress.splot"
version := "0.6.0-SNAPSHOT"
scalaVersion := "2.13.2"
scalacOptions += "-Xfatal-warnings"
scalacOptions += "-feature"
scalacOptions += "-deprecation"
scalacOptions += "-language:implicitConversions"
pomIncludeRepository := { _ => false }
licenses := Seq("MIT-style" -> url("https://opensource.org/licenses/MIT"))
homepage := Some(url("http://git.devfortress.xyz/plugins/gitiles/splot/+/master/README.md"))
scmInfo := Some(
ScmInfo(
url("https://github.com/priimak/splot"),
"scm:https://github.com/priimak/splot.git"
)
)
developers := List(
Developer(
id = "priimak",
name = "Dmitri Priimak",
email = "priimak@devfortress.xyz",
url = url("http://www.devfortress.xyz")
)
)
publishMavenStyle := true
publishTo := {
val nexus = "https://oss.sonatype.org/"
if (isSnapshot.value)
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
publishArtifact in Test := false
lazy val root = (project in file(".")).
enablePlugins(ParadoxPlugin).
settings(
name := "Hello Project",
paradoxTheme := Some(builtinParadoxTheme("generic"))
)
libraryDependencies += "org.scalatest" % "scalatest_2.13" % "3.1.0-SNAP13"
libraryDependencies += "org.scilab.forge" % "jlatexmath" % "1.0.7"
coverageExcludedPackages := "<empty>;xyz\\.devfortress\\.splot\\.colormaps\\..*"