-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
47 lines (40 loc) · 1.55 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
val Scala213 = "2.13.16"
val Scala3 = "3.6.3"
ThisBuild / scalaVersion := Scala213
ThisBuild / crossScalaVersions := Seq(Scala213, Scala3)
ThisBuild / semanticdbEnabled := true
ThisBuild / semanticdbVersion := scalafixSemanticdb.revision
ThisBuild / crossPaths := true
inThisBuild(
List(
organization := "me.wojnowski",
homepage := Some(url("https://github.com/jwojnowski/fs2-aes")),
licenses := List("MIT License" -> url("https://opensource.org/licenses/MIT")),
developers := List(
Developer(
"jwojnowski",
"Jakub Wojnowski",
url("https://github.com/jwojnowski")
)
),
sonatypeCredentialHost := "s01.oss.sonatype.org",
sonatypeRepository := "https://s01.oss.sonatype.org/service/local",
versionScheme := Some("early-semver")
)
)
val commonSettings = Seq(
makePom / publishArtifact := true
)
lazy val root = (project in file("."))
.settings(
name := "fs2-aes",
libraryDependencies ++= Seq(
"co.fs2" %% "fs2-core" % "3.11.0",
"org.scalameta" %% "munit" % "1.1.0" % Test,
"org.scalameta" %% "munit-scalacheck" % "1.1.0" % Test,
"org.typelevel" %% "munit-cats-effect" % "2.0.0" % Test,
"org.typelevel" %% "scalacheck-effect-munit" % "2.0.0-M2" % Test
)
)
ThisBuild / mimaPreviousArtifacts := previousStableVersion.value.map(organization.value %% moduleName.value % _).toSet