Skip to content
This repository was archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
Enabling ci-release in all projects
Browse files Browse the repository at this point in the history
  • Loading branch information
jiveshungerford committed Apr 10, 2024
1 parent 031f7e8 commit a535848
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -53,18 +53,22 @@ lazy val `zikyo-settings` = Seq(
libraryDependencies += "io.getkyo" %%% "kyo-core" % kyoVersion,
)

lazy val skipPublish = Seq(
publishArtifact := false,
publish / skip := true,
Compile / packageBin / publishArtifact := false,
Compile / packageDoc / publishArtifact := false,
Compile / packageSrc / publishArtifact := false,
)

lazy val zikyo =
crossProject(JVMPlatform)
.in(file("."))
.settings(
name := "zikyo",
organization := "io.github.johnhungerford",
publishArtifact := false,
publish / skip := true,
Compile / packageBin / publishArtifact := false,
Compile / packageDoc / publishArtifact := false,
Compile / packageSrc / publishArtifact := false,
scalaVersion := scala3Version,
skipPublish,
`zikyo-settings`
).aggregate(
`zikyo-core`,
Expand All @@ -76,7 +80,6 @@ lazy val `zikyo-core` =
.withoutSuffixFor(JVMPlatform)
.crossType(CrossType.Full)
.in(file("zikyo-core"))
.disablePlugins(CiReleasePlugin, MdocPlugin)
.settings(
`zikyo-settings`,
libraryDependencies += "org.scalatest" %%% "scalatest" % "3.2.16" % Test,
Expand All @@ -91,12 +94,13 @@ lazy val `zikyo-examples` =
.dependsOn(`zikyo-core`)
.in(file("zikyo-examples"))
.settings(
`zikyo-settings`,
Compile / doc / sources := Seq.empty,
libraryDependencies += "com.softwaremill.sttp.tapir" %% "tapir-json-zio" % "1.10.0",
libraryDependencies += "io.getkyo" %% "kyo-direct" % kyoVersion,
libraryDependencies += "io.getkyo" %% "kyo-os-lib" % kyoVersion,
libraryDependencies += "io.getkyo" %% "kyo-tapir" % kyoVersion,
skipPublish,
`zikyo-settings`,
)

import org.scalajs.jsenv.nodejs.*
Expand Down

0 comments on commit a535848

Please sign in to comment.