Skip to content

Commit

Permalink
Update dependencies and enhance publish config
Browse files Browse the repository at this point in the history
  • Loading branch information
dacr committed Sep 28, 2024
1 parent dd81262 commit a6d7e5e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.7.13
version = 3.8.3
runner.dialect = scala3
align.preset = most
maxColumn = 250
Expand Down
15 changes: 7 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,23 @@ ThisBuild / scmInfo := Some(
)
)

ThisBuild / scalaVersion := "3.5.0"
ThisBuild / crossScalaVersions := Seq("3.5.0")
ThisBuild / scalaVersion := "3.5.1"

publishArtifact := false

val versions = new {
val zio = "2.1.9"
// val zionio = "2.0.1"
val zioconfig = "4.0.2"
val ziojson = "0.7.2"
val ziologging = "2.3.0"
val ziolmdb = "1.8.1"
val ziojson = "0.7.3"
val ziologging = "2.3.1"
val ziolmdb = "1.8.2"
val uuidgen = "5.1.0"
val elastic4s = "8.11.5"
val metadata = "2.19.0"
val ulid = "24.7.1"
val ulid = "24.9.2"
val javafx = "21"
val djl = "0.29.0"
val djl = "0.30.0"
// val tapir = "1.5.0"
}

Expand All @@ -44,7 +43,7 @@ lazy val deepJavaLearningLibs = Seq(
"ai.djl.tensorflow" % "tensorflow-engine" % versions.djl,
"ai.djl.tensorflow" % "tensorflow-model-zoo" % versions.djl,
"ai.djl.onnxruntime" % "onnxruntime-engine" % versions.djl,
"net.java.dev.jna" % "jna" % "5.14.0"
"net.java.dev.jna" % "jna" % "5.15.0"
)

lazy val lmdbJavaOptions = Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.1
sbt.version=1.10.2
11 changes: 6 additions & 5 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.13")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.3")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.9")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.3")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.3")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.4")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0")
2 changes: 1 addition & 1 deletion publish.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ThisBuild / publishMavenStyle := true

ThisBuild / releaseCrossBuild := true
ThisBuild / releasePublishArtifactsAction := PgpKeys.publishSigned.value
ThisBuild / publishTo := Some(if (isSnapshot.value) Opts.resolver.sonatypeSnapshots else Opts.resolver.sonatypeStaging)
ThisBuild / publishTo := Some(if (isSnapshot.value) Opts.resolver.sonatypeOssSnapshots.head else Opts.resolver.sonatypeStaging)

ThisBuild / Test / publishArtifact := false
ThisBuild / Compile / packageBin / publishArtifact := true
Expand Down

0 comments on commit a6d7e5e

Please sign in to comment.