forked from jasongoodwin/authentikat-jwt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.sbt
39 lines (26 loc) · 880 Bytes
/
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
name := "authentikat-jwt"
organization := "com.jason-goodwin"
scalaVersion := "3.3.1"
crossScalaVersions := Seq("2.13.1", "3.3.1") //sbt '+ publish'
parallelExecution := false
scalacOptions ++= Seq("-unchecked", "-deprecation")
libraryDependencies ++= Seq(
"commons-codec" % "commons-codec" % "1.15",
"org.json4s" %% "json4s-native" % "4.0.6",
"org.json4s" %% "json4s-jackson" % "4.0.6",
"org.scalatest" %% "scalatest" % "3.2.15" % Test
)
credentials += Credentials(Path.userHome / ".mdialog.credentials")
resolvers ++= Seq(
"Typesafe Repository" at "https://repo.typesafe.com/typesafe/releases/"
)
publishMavenStyle := true
Test / publishArtifact := false
pomIncludeRepository := { _ =>
false
}
bintrayOrganization := Some("signalpath")
bintrayRepository := "scala"
licenses += ("Apache-2.0", url(
"https://www.apache.org/licenses/LICENSE-2.0.html"
))