-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
50 lines (37 loc) · 1.34 KB
/
build.sbt
File metadata and controls
50 lines (37 loc) · 1.34 KB
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
name := "play-nsi-support"
organization := "nl.surfnet"
Global / onChangedBuildSource := ReloadOnSourceChanges
scalaVersion := "3.3.4"
scalacOptions ++= Seq(
"-deprecation",
"-feature",
"-unchecked",
"-Wunused:imports,privates,locals,params",
"-release:21"
)
Test / publishArtifact := true
// Disable ScalaDoc generation
Compile / doc / sources := Seq.empty
Compile / packageDoc / publishArtifact := false
Test / doc / sources := Seq.empty
Test / packageDoc / publishArtifact := false
val playVersion = "3.0.10"
libraryDependencies ++= Seq(
"nl.surfnet.bod" % "bod-nsi" % "3.0.0",
"org.glassfish.jaxb" % "jaxb-runtime" % "4.0.5",
"org.scala-lang.modules" %% "scala-xml" % "2.3.0",
"org.playframework" %% "play" % playVersion,
"org.playframework" %% "play-jdbc" % playVersion,
"org.playframework" %% "play-json" % "3.0.4",
"org.playframework.anorm" %% "anorm" % "2.7.0",
"org.playframework" %% "play-specs2" % playVersion % "test",
"org.specs2" %% "specs2-scalacheck" % "4.20.7" % "test"
)
resolvers += Resolver.typesafeRepo("releases")
githubOwner := "BandwidthOnDemand"
githubRepository := "play-nsi-support"
resolvers += Resolver.githubPackages("BandwidthOnDemand")
Test / testFrameworks := Seq(TestFrameworks.Specs2)
organizationName := "SURFnet B.V."
startYear := Some(2012)
licenses += ("BSD-3-Clause", new URL("file:LICENSE"))