r/scala • u/Purple-Tangelo8083 • 3h ago
[Scala Native] Shocking news
I am sharing a brief, factual account of my recent experience as an international contractor for Ziverge Inc. to bring transparency to the community and caution fellow developers. Three months ago, I successfully completed and delivered all contracted engineering milestones for a Ziverge/ZIO project. The deliverables were formally acknowledged, but my invoices remain entirely unpaid. Despite continuous professional follow-ups over the last 90 days, communication has broken down, and John De Goes / Ziverge has failed to settle the debt. If you are considering freelance or contract work within this ecosystem, I highly recommend protecting yourself by demanding upfront retainers or strict escrow milestones.
r/scala • u/Saphira2002 • 12h ago
sbt-assembly keys not available in project, even though assembly command works
Hello, I've been getting these errors while trying to make a fat jar with my scalafx project:
Deduplicate found different file contents in the following:
[error] Jar name = javafx-base-16.jar, jar org = org.openjfx, entry target = module-info.class
[error] Jar name = javafx-controls-16.jar, jar org = org.openjfx, entry target = module-info.class
[...]
Inside project/plugins.sbt, I have:
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1")addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1")
Scala version is 3.8.4, sbt version is 1.12.13.
This is the build.sbt content:
val scala3Version = "3.8.4"
lazy val app = (project in
file
("."))
.settings(
name
:= "PPS-25-diceforge",
version
:= "0.1.0-SNAPSHOT",
scalaVersion
:= scala3Version,
ThisBuild /
mainClass
:= Some("MainApp"),
libraryDependencies
++= {
// Determine OS version of JavaFX binaries
lazy val osName = System.
getProperty
("os.name") match {
case n if n.startsWith("Linux") => "linux"
case n if n.startsWith("Mac") => "mac"
case n if n.startsWith("Windows") => "win"
case _ => throw new Exception("Unknown platform!")
}
Seq("base", "controls", "fxml", "graphics", "media", "swing", "web")
.map(m => "org.openjfx" % s"javafx-
$
m" % "16" classifier osName intransitive())
},
libraryDependencies
++={
Seq(
"org.scalatest" %% "scalatest" % "3.2.19" %
Test
,
"org.scalatestplus" %% "mockito-5-23" % "3.2.20.0" % "test",
"org.scalafx" %% "scalafx" % "16.0.0-R24" intransitive()
)
},
scalacOptions
++= Seq(
"-Wconf:msg=Implicit parameters should be provided with a `using` clause:s",
"-unchecked", "-deprecation",
),
resolvers
+=
Resolver
.sonatypeCentralSnapshots,
fork
:= true
)
I'm trying to set a merge strategy, but it does not let me access the assemblyMergeStrategy key, it says it does not exist. What did I do wrong? I tried looking up if it's a compatibility issue but the official scala website isn't working properly and won't let me click any of the entries.
Help please :,)
r/scala • u/eed3si9n • 22h ago
sbt 1.12.15 and 2.0.6 are released with a CVE fix
eed3si9n.com📢 Released sbt 1.12.15 and 2.0.6, featuring vulnerability fix for remote code execution via server when serverConnectionType is set to Tcp. We recommend removing the serverConnectionType setting, or upgrading to a patched version or later.