forked from witi83/akka-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
55 lines (46 loc) · 1.59 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
name := "akka-jwt"
organization := "com.github.witi83"
version := "1.3.0"
scalaVersion := "2.11.8"
scalacOptions := Seq("-deprecation",
"-encoding", "utf8",
"-feature",
"-target:jvm-1.8",
"-unchecked",
"-Yinline-warnings",
"-Yno-adapted-args",
"-Ywarn-dead-code",
"-Ywarn-numeric-widen",
"-Ywarn-value-discard",
"-Xfatal-warnings",
"-Xfuture")
libraryDependencies ++= {
val akkaHttpVersion = "10.0.1"
Seq(
"com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
"com.nimbusds" % "nimbus-jose-jwt" % "4.33",
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion % "test"
)
}
publishMavenStyle := true
publishArtifact in Test := false
licenses := Seq("MIT" -> url("http://opensource.org/licenses/MIT"))
homepage := Some(url("https://github.com/witi83/akka-jwt"))
pomExtra := <scm>
<url>https://github.com/witi83/akka-jwt.git</url>
<connection>scm:git:https://github.com/witi83/akka-jwt.git</connection>
</scm>
<developers>
<developer>
<id>kikuomax</id>
<name>Kikuo Emoto</name>
<url>https://github.com/kikuomax</url>
</developer>
<developer>
<id>witi83</id>
<name>Witold Czaplewski</name>
<url>https://github.com/witi83</url>
</developer>
</developers>
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")