-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sbt
More file actions
41 lines (37 loc) · 1.44 KB
/
build.sbt
File metadata and controls
41 lines (37 loc) · 1.44 KB
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
lazy val fs2Version = "3.12.2"
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",
"bholt+github@dwolla.com",
url("https://dwolla.com")
)
)
ThisBuild / tlBaseVersion := "3.0"
ThisBuild / tlCiReleaseBranches := Seq("3.x")
ThisBuild / crossScalaVersions := Seq("3.3.7", "2.13.18", "2.12.21")
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.2.1" % Test,
"com.eed3si9n.expecty" %%% "expecty" % "0.17.1" % Test,
"org.typelevel" %%% "munit-cats-effect" % "2.1.0" % Test,
),
)
lazy val `fs2-aws` = tlCrossRootProject
.aggregate(`fs2-utils`.jvm, `fs2-utils`.js)