-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
42 lines (33 loc) · 1.15 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
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",
url("https://github.com/wjglerum")
)
),
licenses := Seq(
"Apache-2.0" -> url("http://www.apache.org/license/LICENSE-2.0")
)
)
)
name := "play-googleopenconnect"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.13.16"
crossScalaVersions := Seq("2.13.16", "3.6.3")
libraryDependencies ++= Seq(
ws, guice,
"com.google.api-client" % "google-api-client" % "1.30.7",
"com.google.apis" % "google-api-services-oauth2" % "v2-rev20190313-1.30.1"
)
ThisBuild / versionScheme := Some("semver-spec")
ThisBuild / dynverVTagPrefix := false
Global / onChangedBuildSource := ReloadOnSourceChanges
ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org"
sonatypeRepository := "https://s01.oss.sonatype.org/service/local"