Aaron Pritzlaff efb7e5624d
Cask version fix (#18486)
* using artefact version in build

* using artefact version in build

* cask knows how to honour artifact versions
2024-04-24 23:50:14 +08:00

53 lines
1.3 KiB
Scala

ThisBuild / name := "scala-cask-petstore"
ThisBuild / organization := "cask.groupId"
ThisBuild / version := "0.0.1"
ThisBuild / scalaVersion := "3.4.1"
ThisBuild / scalafmtOnCompile := true
ThisBuild / versionScheme := Some("early-semver")
// Common settings
lazy val commonSettings = Seq(
libraryDependencies ++= Seq(
"com.lihaoyi" %%% "upickle" % "3.2.0",
"org.scalatest" %%% "scalatest" % "3.2.18" % Test
),
name := "scala-cask-petstore"
)
lazy val app = crossProject(JSPlatform, JVMPlatform).in(file(".")).
settings(commonSettings).
jvmSettings(
libraryDependencies += "com.lihaoyi" %% "cask" % "0.9.2"
).
jsSettings(
scalaJSUseMainModuleInitializer := true
)
lazy val root = project.in(file(".")).
aggregate(app.js, app.jvm).
settings(
publish := {},
publishLocal := {},
)
ThisBuild / publishMavenStyle := true
val githubUser = "GIT_USER_ID"
val githubRepo = "GIT_REPO_ID"
ThisBuild / publishTo := Some("GitHub Package Registry" at s"https://maven.pkg.github.com/$githubUser/$githubRepo")
sys.env.get("GITHUB_TOKEN") match {
case Some(token) if !token.isEmpty =>
ThisBuild / credentials += Credentials(
"GitHub Package Registry",
"maven.pkg.github.com",
githubUser,
token
)
case _ =>
println("\n\t\tGITHUB_TOKEN not set - assuming a local build\n\n")
credentials ++= Nil
}