-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
75 lines (69 loc) · 1.96 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
70
71
72
73
74
75
name := "akka-jwt"
version := "1.2.0"
organization := "de.innfactory"
description := "akka-http jwt auth directive"
scalaVersion := Version.Scala
scalafmtVersion := "1.2.0"
scalacOptions ++= Seq(
"-deprecation",
"-target:jvm-1.8",
"-encoding",
"UTF-8",
"-feature",
"-language:existentials",
"-language:higherKinds",
"-language:implicitConversions",
"-language:postfixOps",
"-unchecked",
"-Xlint",
"-Xlint:missing-interpolator",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard"
)
libraryDependencies ++= {
Seq(
Library.akkaHttp,
Library.akkaStreams,
Library.nimbusJwt,
TestLibrary.akkaHttp,
TestLibrary.akkaStreams,
TestLibrary.scalaTest,
TestLibrary.scalaCheck
)
}
scalafmtOnCompile := true
crossScalaVersions := Seq("2.10.7", "2.11.12", "2.12.9", scalaVersion.value)
// sbt-bintray options
licenses += ("Apache-2.0", url(
"http://www.apache.org/licenses/LICENSE-2.0.txt"))
bintrayOrganization := Some("innfactory")
bintrayRepository := "sbt-plugins"
bintrayPackageLabels := Seq("JWT",
"Scala",
"akka-http",
"cognito",
"oauth2",
"openid",
"auth0")
bintrayVcsUrl := Some("https://github.com/innFactory/akka-jwt")
homepage := Some(url("https://github.com/innFactory/akka-jwt"))
publishMavenStyle := true
pomExtra :=
<scm>
<url>[email protected]:innFactory/akka-jwt.git</url>
<connection>scm:git:[email protected]:innFactory/akka-jwt.git</connection>
</scm>
<developers>
<developer>
<id>innFactory</id>
<name>Tobias Jonas</name>
<email>[email protected]</email>
<url>https://innFactory.de/</url>
<organization>innFactory</organization>
<organizationUrl>https://innFactory.de/</organizationUrl>
<roles>
<role>CEO</role>
</roles>
</developer>
</developers>