Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scala3-library to 3.5.2 #5077

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "joern"
ThisBuild / organization := "io.joern"
ThisBuild / scalaVersion := "3.4.3"
ThisBuild / scalaVersion := "3.5.2"

val cpgVersion = "1.7.13"

Expand Down Expand Up @@ -46,7 +46,7 @@ ThisBuild / scalacOptions ++= Seq(
"-deprecation", // Emit warning and location for usages of deprecated APIs.
"--release",
"11",
"-Wshadow:type-parameter-shadow",
"-Wshadow:type-parameter-shadow"
)

lazy val createDistribution = taskKey[File]("Create a complete Joern distribution")
Expand All @@ -73,12 +73,12 @@ ThisBuild / Test / fork := true
Global / onChangedBuildSource := ReloadOnSourceChanges

// publishing info for sonatype / maven central
ThisBuild / publishTo := sonatypePublishToBundle.value
ThisBuild / publishTo := sonatypePublishToBundle.value
ThisBuild / sonatypeCredentialHost := xerial.sbt.Sonatype.sonatypeCentralHost

ThisBuild / scmInfo := Some(ScmInfo(url("https://github.com/joernio/joern"), "scm:[email protected]:joernio/joern.git"))
ThisBuild / homepage := Some(url("https://joern.io/"))
ThisBuild / licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
ThisBuild / scmInfo := Some(ScmInfo(url("https://github.com/joernio/joern"), "scm:[email protected]:joernio/joern.git"))
ThisBuild / homepage := Some(url("https://joern.io/"))
ThisBuild / licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0"))
ThisBuild / developers := List(
/* sonatype requires this to be non-empty */
Developer("fabsx00", "Fabian Yamaguchi", "[email protected]", url("https://github.com/fabsx00"))
Expand Down
Loading