-
Notifications
You must be signed in to change notification settings - Fork 24
/
build.sbt
41 lines (29 loc) · 1.16 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
import scalariform.formatter.preferences._
import com.typesafe.sbt.SbtScalariform.ScalariformKeys
name := "scalax"
organization := "com.github.t3hnar"
scalaVersion := crossScalaVersions.value.head
crossScalaVersions := Seq("2.13.0", "2.12.10")
licenses := Seq(("Apache License, Version 2.0", url("http://www.apache.org/licenses/LICENSE-2.0")))
homepage := Some(new URL("https://github.com/t3hnar/scalax"))
libraryDependencies += "org.specs2" %% "specs2-core" % "4.8.0" % Test
organization := "com.github.t3hnar"
pomExtra := {
<scm>
<url>[email protected]:t3hnar/scalax.git</url>
<developerConnection>scm:git:[email protected]:t3hnar/scalax.git</developerConnection>
<connection>scm:git:[email protected]:t3hnar/scalax.git</connection>
</scm>
<developers>
<developer>
<id>t3hnar</id>
<name>Yaroslav Klymko</name>
<email>[email protected]</email>
</developer>
</developers>
}
ScalariformKeys.preferences := ScalariformKeys.preferences.value
.setPreference(AlignParameters, true)
.setPreference(AlignSingleLineCaseStatements, true)
coverageExcludedPackages := "com.github.t3hnar.scalax.examples.*"
publishTo := sonatypePublishToBundle.value