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 dependencies #177

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
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
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.17
version = 3.8.3
maxColumn = 140
project.git = true
project.excludeFilters = [ /sbt-test/, /input_sources/, /contraband-scala/ ]
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ThisBuild / developers := List(
)
ThisBuild / description := "Contraband is a description language for your datatypes and APIs, currently targeting Java and Scala."
Global / semanticdbEnabled := true
Global / semanticdbVersion := "4.4.32"
Global / semanticdbVersion := "4.10.1"

lazy val root = (project in file("."))
.enablePlugins(TravisSitePlugin)
Expand Down
10 changes: 5 additions & 5 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ import sbt._
import Keys._

object Dependencies {
val scala212 = "2.12.15"
val scala213 = "2.13.8"
val scala3 = "3.3.0"
val scala212 = "2.12.20"
val scala213 = "2.13.15"
val scala3 = "3.3.4"

val sjsonNewScalaJson = "com.eed3si9n" %% "sjson-new-scalajson" % "0.10.0"
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.16"
val parboiled = "org.parboiled" %% "parboiled" % "2.5.0"
val scalaTest = "org.scalatest" %% "scalatest" % "3.2.19"
val parboiled = "org.parboiled" %% "parboiled" % "2.5.1"
val diffutils = "com.googlecode.java-diff-utils" % "diffutils" % "1.3.0"
val verify = "com.eed3si9n.verify" %% "verify" % "1.0.0"
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.3
sbt.version=1.10.2
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.1")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.0")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
Loading