-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
48 lines (41 loc) · 960 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
40
41
42
43
44
45
46
47
48
// === project info ===
inThisBuild(
Seq(
organization := "io.github.stoneream",
homepage := Some(url("https://PROJECT-URL-HERE")),
licenses := List("LICENSE NAME HERE" -> url("https://LICENSE-URL-HERE")),
developers := List(
Developer(
"stoneream",
"Ishikawa Ryuto",
url("https://github.com/stoneream")
)
)
)
)
// === scala settings ===
inThisBuild(
Seq(
scalaVersion := "3.4.2",
scalafmtOnCompile := true,
scalacOptions ++= Seq(
"-Yretain-trees",
"-Wunused:all"
),
semanticdbEnabled := true
)
)
// === project setting ===
lazy val root = (project in file("."))
.settings(
name := "scala-template",
publish / skip := true
)
/* example
lazy val core = (project in file("core"))
.settings(name := "core")
lazy val example = (project in file("example"))
.settings(name := "example")
.dependsOn(core)
*/