-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.sbt
More file actions
44 lines (36 loc) · 1.22 KB
/
build.sbt
File metadata and controls
44 lines (36 loc) · 1.22 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
inThisBuild(
List(
organization := "com.lunatech",
organizationName := "Lunatech",
organizationHomepage := Some(url("https://lunatech.com")),
homepage := Some(url("https://github.com/lunatech-labs/lunatech-play-googleopenconnect/")),
developers := List(
Developer(
"wjglerum",
"Willem Jan Glerum",
"willem.jan.glerum@lunatech.nl",
url("https://github.com/wjglerum")
)
),
licenses := Seq(
"Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0")
)
)
)
name := "play-googleopenconnect"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.13.18"
crossScalaVersions := Seq("2.13.18", "3.8.2")
libraryDependencies ++= Seq(
ws, guice,
"com.google.api-client" % "google-api-client" % "2.9.0",
"com.google.apis" % "google-api-services-oauth2" % "v2-rev20200213-2.0.0"
)
ThisBuild / versionScheme := Some("semver-spec")
ThisBuild / dynverVTagPrefix := false
Global / onChangedBuildSource := ReloadOnSourceChanges
ThisBuild / publishTo := {
val centralSnapshots = "https://central.sonatype.com/repository/maven-snapshots/"
if (isSnapshot.value) Some("central-snapshots" at centralSnapshots)
else localStaging.value
}