-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
140 lines (126 loc) · 7.79 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
organization := "pt.tecnico.dsi"
name := "scala-neutron-client"
// ======================================================================================================================
// ==== Compile Options =================================================================================================
// ======================================================================================================================
javacOptions ++= Seq("-Xlint", "-encoding", "UTF-8", "-Dfile.encoding=utf-8")
scalaVersion := "3.3.0"
scalacOptions ++= Seq(
//"-explain", // Explain errors in more detail.
//"-explain-types", // Explain type errors in more detail.
"-new-syntax", // Require `then` and `do` in control expressions.
"-indent", // Allow significant indentation.
"-feature", // Emit warning and location for usages of features that should be imported explicitly.
"-language:future", // better-monadic-for
"-language:implicitConversions", // Allow implicit conversions
"-deprecation", // Emit warning and location for usages of deprecated APIs.
"-Wunused:all", // Enable or disable specific `unused` warnings
"-Werror", // Fail the compilation if there are any warnings.
"-Wvalue-discard",
"-source:future",
)
// These lines ensure that in sbt console or sbt test:console the -Werror is not bothersome.
Compile / console / scalacOptions ~= (_.filterNot(_.startsWith("-Werror")))
Test / console / scalacOptions := (Compile / console / scalacOptions).value
// ======================================================================================================================
// ==== Dependencies ====================================================================================================
// ======================================================================================================================
libraryDependencies ++= Seq(
"pt.tecnico.dsi" %% "scala-keystone-client" % "0.12.0",
"ch.qos.logback" % "logback-classic" % "1.4.7" % Test,
"org.scalatest" %% "scalatest" % "3.2.16" % Test,
)
// ======================================================================================================================
// ==== Testing =========================================================================================================
// ======================================================================================================================
// http://www.scalatest.org/user_guide/using_the_runner
// -o[configs...] - causes test results to be written to the standard output.
// D - show all durations
// F - show full stack traces
Test / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-oDF")
// By default, logging is buffered for each test source file until all tests for that file complete. This disables it.
Test / logBuffered := false
// By default, tests executed in a forked JVM are executed sequentially.
Test / fork := true
// So we make them run in parallel.
Test / testForkedParallel := false // Openstack can't handle things in parallel
// We need to force IPv6 addresses otherwise Java resolves names to IPv4 and Travis will fail because the VM test is not reachable by IPv4
Test / javaOptions += "-Djava.net.preferIPv6Addresses=true"
// The tests in a single group are run sequentially. We run 4 suites per forked VM.
Test / testGrouping := {
import sbt.Tests.{Group, SubProcess}
(Test / definedTests).value.grouped(4).zipWithIndex.map { case (tests, index) =>
Group(index.toString, tests, SubProcess(ForkOptions().withRunJVMOptions((Test / javaOptions).value.toVector)))
}.toSeq
}
// ======================================================================================================================
// ==== Scaladoc ========================================================================================================
// ======================================================================================================================
git.remoteRepo := s"[email protected]:ist-dsi/${name.value}.git"
val latestReleasedVersion = SettingKey[String]("latest released version")
latestReleasedVersion := git.gitDescribedVersion.value.getOrElse("0.0.1-SNAPSHOT")
// Define the base URL for the Scaladocs for your library. This will enable clients of your library to automatically
// link against the API documentation using autoAPIMappings.
apiURL := Some(url(s"${homepage.value.get}/api/${latestReleasedVersion.value}/"))
autoAPIMappings := true // Tell scaladoc to look for API documentation of managed dependencies in their metadata.
Compile / doc / scalacOptions ++= Seq(
"-author", // Include authors.
"-diagrams", // Create inheritance diagrams for classes, traits and packages.
"-groups", // Group similar functions together (based on the @group annotation)
"-implicits", // Document members inherited by implicit conversions.
"-doc-title", name.value.capitalize,
"-doc-version", latestReleasedVersion.value,
"-doc-source-url", s"${homepage.value.get}/tree/v${latestReleasedVersion.value}€{FILE_PATH}.scala",
"-sourcepath", baseDirectory.value.getAbsolutePath,
)
enablePlugins(GhpagesPlugin, SiteScaladocPlugin)
SiteScaladoc / siteSubdirName := s"api/${version.value}"
ghpagesCleanSite / excludeFilter := AllPassFilter // We want to keep all the previous API versions
val latestFileName = "latest"
val createLatestSymlink = taskKey[Unit](s"Creates a symlink named $latestFileName which points to the latest version.")
createLatestSymlink := {
import java.nio.file.Files
// We use ghpagesSynchLocal instead of ghpagesRepository to ensure the files in the local filesystem already exist
val linkName = (ghpagesSynchLocal.value / "api" / latestFileName).toPath
val target = new File(latestReleasedVersion.value).toPath
if (!(Files.isSymbolicLink(linkName) && Files.readSymbolicLink(linkName) == target)) {
Files.delete(linkName)
Files.createSymbolicLink(linkName, target)
}
}
ghpagesPushSite := ghpagesPushSite.dependsOn(createLatestSymlink).value
ghpagesNoJekyll := false
ghpagesPushSite / envVars := Map("SBT_GHPAGES_COMMIT_MESSAGE" -> s"Add Scaladocs for version ${latestReleasedVersion.value}")
// ======================================================================================================================
// ==== Publishing/Release ==============================================================================================
// ======================================================================================================================
publishTo := sonatypePublishTo.value
sonatypeProfileName := organization.value
licenses += "MIT" -> url("http://opensource.org/licenses/MIT")
homepage := Some(url(s"https://github.com/ist-dsi/${name.value}"))
scmInfo := Some(ScmInfo(homepage.value.get, git.remoteRepo.value))
developers ++= List(
Developer("Lasering", "Simão Martins", "", url("https://github.com/Lasering")),
Developer("afonsomatos", "Afonso Matos", "", url("https://github.com/afonsomatos")),
)
// Fail the build/release if updates there are updates for the dependencies
dependencyUpdatesFailBuild := true
releaseUseGlobalVersion := false
releaseNextCommitMessage := s"Setting version to ${ReleasePlugin.runtimeVersion.value} [skip ci]"
releasePublishArtifactsAction := PgpKeys.publishSigned.value // Maven Central requires packages to be signed
import ReleaseTransformations._
releaseProcess := Seq[ReleaseStep](
releaseStepTask(dependencyUpdates),
checkSnapshotDependencies,
inquireVersions,
runClean,
releaseStepTask(Compile / doc),
releaseStepTask(Test / test),
setReleaseVersion,
tagRelease,
releaseStepTask(ghpagesPushSite),
publishArtifacts,
releaseStepCommand("sonatypeRelease"),
pushChanges,
setNextVersion
)