blob: 4a67f6941b9fc09e0c792f1d474d76eeedb630df (
plain)
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
|
// https://typelevel.org/sbt-typelevel/faq.html#what-is-a-base-version-anyway
ThisBuild / tlBaseVersion := "0.0" // your current series x.y
ThisBuild / organization := "com.codiff"
ThisBuild / organizationName := "codiff"
ThisBuild / startYear := Some(2026)
ThisBuild / licenses := Seq(License.Apache2)
ThisBuild / developers := List(
// your GitHub handle and name
tlGitHubDev("amir", "Amir Saeid")
)
// publish website from this branch
ThisBuild / tlSitePublishBranch := Some("main")
val Scala213 = "2.13.18"
ThisBuild / crossScalaVersions := Seq(Scala213, "3.3.7")
ThisBuild / scalaVersion := Scala213 // the default Scala
lazy val root = tlCrossRootProject.aggregate(core, fs2)
lazy val core = crossProject(JVMPlatform, JSPlatform)
.crossType(CrossType.Pure)
.in(file("core"))
.settings(
name := "fairstream",
libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-core" % "2.13.0",
"org.typelevel" %%% "cats-effect" % "3.6.3",
"org.scalameta" %%% "munit" % "1.2.2" % Test,
"org.typelevel" %%% "munit-cats-effect" % "2.1.0" % Test
)
)
lazy val fs2 = crossProject(JVMPlatform, JSPlatform)
.crossType(CrossType.Pure)
.in(file("fs2"))
.dependsOn(core)
.settings(
name := "fairstream-fs2",
libraryDependencies ++= Seq(
"co.fs2" %%% "fs2-core" % "3.12.2",
"org.scalameta" %%% "munit" % "1.2.2" % Test,
"org.typelevel" %%% "munit-cats-effect" % "2.1.0" % Test
)
)
lazy val docs = project
.in(file("site"))
.enablePlugins(TypelevelSitePlugin)
.settings(
tlFatalWarnings := false
)
.dependsOn(core.jvm, fs2.jvm)
|