Skip to content

Commit

Permalink
Merge pull request #161 from davenverse/updateBuild
Browse files Browse the repository at this point in the history
Update Build
  • Loading branch information
ChristopherDavenport authored Jul 16, 2024
2 parents c04f08d + 123f19e commit 37dc3cd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 15 deletions.
19 changes: 8 additions & 11 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 fs2V = "3.9.4"
val catsV = "2.11.0"
val catsEffectV = "3.5.4"
val fs2V = "3.10.2"


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

0 comments on commit 37dc3cd

Please sign in to comment.