Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ lazy val commonSettings = Seq(
organizationName := "Evolution",
organizationHomepage := Some(url("https://evolution.com")),
scalaVersion := crossScalaVersions.value.head,
crossScalaVersions := Seq("2.13.16", "3.3.5"),
crossScalaVersions := Seq("2.13.18", "3.3.5"),
scalacOptsFailOnWarn := crossSettings(
scalaVersion.value,
if3 = Some(false),
Expand Down Expand Up @@ -54,14 +54,14 @@ lazy val commonSettings = Seq(
url("https://github.com/t3hnar")
)
),
publishTo := Some(Resolver.evolutionReleases),
publishTo := Some(Resolver.evolutionReleases)
)

lazy val root = (project in file("."))
.settings(
name := "scache-root",
publish / skip := true,
publishArtifact := false,
publishArtifact := false
)
.aggregate(`cache-adt`, scache)

Expand All @@ -70,7 +70,7 @@ lazy val `cache-adt` = (project in file("cache-adt"))
.settings(
name := "cache-adt",
description := "Directive ADT for scache",
versionPolicyIntention := Compatibility.BinaryCompatible,
versionPolicyIntention := Compatibility.BinaryCompatible
)

lazy val scache = (project in file("scache"))
Expand All @@ -86,7 +86,7 @@ lazy val scache = (project in file("scache"))
`cats-helper`,
smetrics,
scalatest % Test
),
)
)
.dependsOn(`cache-adt`)

Expand Down
Loading