This repository has been archived by the owner on Oct 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
69 lines (55 loc) · 1.45 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
68
69
val scala212 = "2.12.10"
val scala213 = "2.13.1"
name := "db-migration"
organization := "io.fcomb"
version := "0.6.3"
scalaVersion in ThisBuild := scala213
crossScalaVersions := Seq(scala212, scala213)
scalafmtOnCompile := true
libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.21" % "provided"
bintrayOrganization := Some("fcomb")
bintrayRepository := "maven"
licenses := Seq("MIT" -> url("http://www.opensource.org/licenses/mit-license.html"))
publishMavenStyle := true
publishArtifact in Test := false
pomIncludeRepository := { _ =>
false
}
pomExtra := (<url>https://github.com/fcomb/db-migration</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>[email protected]:fcomb/db-migration.git</url>
<connection>scm:git:[email protected]:fcomb/db-migration.git</connection>
</scm>
<developers>
<developer>
<id>fcomb</id>
<name>fcomb</name>
<url>https://github.com/fcomb/</url>
</developer>
</developers>)
scalacOptions ++= Seq(
"-deprecation",
"-encoding",
"utf-8",
"-explaintypes",
"-feature",
// "-release",
// "11",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-unchecked",
"-Xlint",
"-Yrangepos",
"-Ywarn-dead-code",
"-Ywarn-extra-implicit",
"-Ywarn-unused:_",
"-Ywarn-value-discard"
)