forked from ThoughtWorksInc/sbt-best-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
44 lines (28 loc) · 952 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
sbtPlugin in ThisBuild := true
organization in ThisBuild := "com.thoughtworks.sbt-best-practice"
lazy val `detect-license` = project dependsOn git
lazy val travis = project dependsOn git
lazy val `github-actions` = project dependsOn git
lazy val git = project
lazy val `scalac-options` = project
lazy val `publish-unidoc` = project
lazy val `detect-scala-organization` = project
lazy val `subdirectory-organization` = project
lazy val mima = project
lazy val `skip-duplicate-java-publish` = project
lazy val `version-scheme` = project
dependsOn(
`scalac-options`,
`detect-license`,
travis,
`github-actions`,
git,
`publish-unidoc`,
`detect-scala-organization`,
`subdirectory-organization`,
`skip-duplicate-java-publish`,
`version-scheme`
)
libraryDependencies += "com.lihaoyi" %% "sourcecode" % "0.3.0"
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2")
enablePlugins(ScalaUnidocPlugin)