Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Build #161

Merged
merged 3 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
17 changes: 7 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,18 @@ ThisBuild / developers := List(

ThisBuild / tlCiReleaseBranches := Seq("main")

// true by default, set to false to publish to s01.oss.sonatype.org
ThisBuild / tlSonatypeUseLegacyHost := true

ThisBuild / githubWorkflowBuildPreamble ++= nativeBrewInstallWorkflowSteps.value


val catsV = "2.10.0"
val catsEffectV = "3.5.3"
val catsV = "2.11.0"
val catsEffectV = "3.5.4"
val fs2V = "3.9.4"


val munitCatsEffectV = "2.0.0-M4"

ThisBuild / crossScalaVersions := Seq("2.12.18","2.13.12", "3.3.1")
ThisBuild / scalaVersion := "2.13.12"
ThisBuild / crossScalaVersions := Seq("2.12.19","2.13.14", "3.4.2")
ThisBuild / scalaVersion := "2.13.14"
ThisBuild / versionScheme := Some("early-semver")

// Projects
Expand Down Expand Up @@ -60,11 +57,11 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
).jsSettings(
scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule)}
).jvmSettings(
libraryDependencies += "com.github.jnr" % "jnr-unixsocket" % "0.38.20" % Test,
libraryDependencies += "com.github.jnr" % "jnr-unixsocket" % "0.38.22" % Test,
)
.platformsSettings(JVMPlatform, JSPlatform)(
libraryDependencies ++= Seq(
"io.chrisdavenport" %%% "whale-tail-manager" % "0.0.10" % Test,
"io.chrisdavenport" %%% "whale-tail-manager" % "0.0.11" % Test,
)
)
.nativeEnablePlugins(ScalaNativeBrewedConfigPlugin)
Expand All @@ -87,7 +84,7 @@ lazy val examples = crossProject(JVMPlatform, JSPlatform)
run / fork := true,
).jsSettings(
libraryDependencies ++= Seq(
"io.github.cquiroz" %%% "scala-java-time" % "2.4.0"
"io.github.cquiroz" %%% "scala-java-time" % "2.6.0"
),
Compile / mainClass := Some("BasicExample"),
scalaJSUseMainModuleInitializer := true,
Expand Down
8 changes: 4 additions & 4 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.6.5")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.6.5")
addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.6.5")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.15.0")
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.6.7")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.6.7")
addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % "0.6.7")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.17")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2")
Expand Down