-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
consolidate build settings in build plugin so there's no confusing ov…
…er where they're set
- Loading branch information
Showing
2 changed files
with
25 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,3 @@ | ||
ThisBuild / organization := "com.dwolla" | ||
ThisBuild / homepage := Some(url("https://github.com/Dwolla/async-utils")) | ||
ThisBuild / licenses := Seq(License.MIT) | ||
ThisBuild / developers := List( | ||
Developer( | ||
"bpholt", | ||
"Brian Holt", | ||
"[email protected]", | ||
url("https://dwolla.com") | ||
), | ||
) | ||
ThisBuild / startYear := Option(2021) | ||
ThisBuild / tlSonatypeUseLegacyHost := true | ||
ThisBuild / tlBaseVersion := "1.1" | ||
ThisBuild / tlCiReleaseBranches := Seq("main") | ||
ThisBuild / mergifyRequiredJobs ++= Seq("validate-steward") | ||
ThisBuild / mergifyStewardConfig ~= { _.map(_.copy( | ||
author = "dwolla-oss-scala-steward[bot]", | ||
mergeMinors = true, | ||
))} | ||
ThisBuild / tlJdkRelease := Option(8) | ||
ThisBuild / tlFatalWarnings := githubIsWorkflowBuild.value | ||
|
||
lazy val `async-utils-root` = (project in file(".")) | ||
.aggregate(allProjects.map(_.project) *) | ||
.settings( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -326,6 +326,31 @@ object AsyncUtilsBuildPlugin extends AutoPlugin { | |
githubWorkflowScalaVersions := Seq("per-project-matrix"), | ||
githubWorkflowBuildSbtStepPreamble := Nil, | ||
|
||
organization := "com.dwolla", | ||
homepage := Some(url("https://github.com/Dwolla/async-utils")), | ||
licenses := Seq(License.MIT), | ||
developers := List( | ||
Developer( | ||
"bpholt", | ||
"Brian Holt", | ||
"[email protected]", | ||
url("https://dwolla.com") | ||
), | ||
), | ||
startYear := Option(2021), | ||
tlSonatypeUseLegacyHost := true, | ||
tlBaseVersion := "1.1", | ||
tlCiReleaseBranches := Seq("main"), | ||
mergifyRequiredJobs ++= Seq("validate-steward"), | ||
mergifyStewardConfig ~= { | ||
_.map(_.copy( | ||
author = "dwolla-oss-scala-steward[bot]", | ||
mergeMinors = true, | ||
)) | ||
}, | ||
tlJdkRelease := Option(8), | ||
tlFatalWarnings := githubIsWorkflowBuild.value, | ||
|
||
nodeExecutable := | ||
scala.util.Try { | ||
import scala.sys.process.* | ||
|