-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathbuild.sbt
More file actions
29 lines (25 loc) · 847 Bytes
/
build.sbt
File metadata and controls
29 lines (25 loc) · 847 Bytes
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
import play.api.libs.json.Json
inThisBuild(
Seq(
scalaVersion := "3.3.4",
developers ++= List(
Developer("lucidsoftware", "Lucid Software, Inc.", "", url("https://lucid.co/")),
),
licenses += "Apache License, Version 2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"),
homepage := Some(url("https://github.com/lucidsoftware/piezo")),
organization := "com.lucidchart",
scmInfo := Some(
ScmInfo(url("https://github.com/lucidsoftware/piezo"), "scm:git:[email protected]:lucidsoftware/piezo.git"),
),
versionScheme := Some("early-semver"),
scalacOptions ++= Seq(
"-no-indent",
"-Wunused:linted",
"-Werror",
// "-Xlint",
),
),
)
lazy val admin = project.dependsOn(worker)
lazy val worker = project
PgpKeys.pgpPassphrase in Global := Some(Array.emptyCharArray)