-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
42 lines (38 loc) · 1.51 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
lazy val fs2Version = "3.11.0"
ThisBuild / organization := "com.dwolla"
ThisBuild / homepage := Some(url("https://github.com/Dwolla/fs2-aws"))
ThisBuild / licenses += ("MIT", url("https://opensource.org/licenses/MIT"))
ThisBuild / developers := List(
Developer(
"bpholt",
"Brian Holt",
url("https://dwolla.com")
)
)
ThisBuild / tlBaseVersion := "3.0"
ThisBuild / tlCiReleaseBranches := Seq("3.x")
ThisBuild / sonatypeCredentialHost := xerial.sbt.Sonatype.sonatypeLegacy
ThisBuild / crossScalaVersions := Seq("3.3.4", "2.13.15", "2.12.20")
ThisBuild / startYear := Option(2018)
ThisBuild / githubWorkflowBuild := Seq(WorkflowStep.Sbt(List("test", "mimaReportBinaryIssues", "doc")))
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("8"), JavaSpec.temurin("11"))
ThisBuild / mergifyRequiredJobs ++= Seq("validate-steward")
ThisBuild / mergifyStewardConfig ~= { _.map {
_.withAuthor("dwolla-oss-scala-steward[bot]")
.withMergeMinors(true)
}}
lazy val `fs2-utils` = crossProject(JSPlatform, JVMPlatform)
.crossType(CrossType.Full)
.in(file("core"))
.settings(
description := "Helpful utility functions for fs2 streams",
libraryDependencies ++= Seq(
"co.fs2" %%% "fs2-core" % fs2Version,
"org.scalameta" %%% "munit" % "1.0.2" % Test,
"com.eed3si9n.expecty" %%% "expecty" % "0.16.0" % Test,
"org.typelevel" %%% "munit-cats-effect" % "2.0.0" % Test,
),
)
lazy val `fs2-aws` = tlCrossRootProject
.aggregate(`fs2-utils`.jvm, `fs2-utils`.js)