Skip to content

Commit

Permalink
Merge branch 'master' into update/atmosphere-jersey-0.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch authored May 12, 2024
2 parents e94dd63 + b0ddf34 commit 8f5937b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4.0.0
uses: actions/setup-java@v4.2.1
with:
java-version: ${{ matrix.java }}
distribution: adopt
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import com.typesafe.tools.mima.core._

def Scala211 = "2.11.12"
def Scala212 = "2.12.19"
def Scala213 = "2.13.13"
def Scala3 = "3.3.2"
def Scala213 = "2.13.14"
def Scala3 = "3.3.3"

addCommandAlias("SetScala211", s"++ ${Scala211}!")
addCommandAlias("SetScala212", s"++ ${Scala212}!")
Expand All @@ -20,7 +20,7 @@ addCommandAlias("SetScala3", s"++ ${Scala3}!")

name := "scalate"
organization := "org.scalatra.scalate"
version := "1.9.9-SNAPSHOT"
version := "1.10.0"
scalaVersion := Scala213
crossScalaVersions := Seq(Scala3, Scala213, Scala212, Scala211)
javacOptions ++= Seq("-source", "1.8")
Expand Down
16 changes: 8 additions & 8 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object Dependencies {
if (scalaBinaryVersion.value == "2.11") {
"org.scala-lang.modules" %% "scala-parser-combinators" % "1.1.1"
} else {
"org.scala-lang.modules" %% "scala-parser-combinators" % "2.3.0"
"org.scala-lang.modules" %% "scala-parser-combinators" % "2.4.0"
}
)

Expand All @@ -17,7 +17,7 @@ object Dependencies {
case Some((2, 11)) =>
"org.scala-lang.modules" %% "scala-xml" % "1.3.1"
case _ =>
"org.scala-lang.modules" %% "scala-xml" % "2.2.0"
"org.scala-lang.modules" %% "scala-xml" % "2.3.0"
}
)

Expand All @@ -30,7 +30,7 @@ object Dependencies {
}
)

val scalaCollectionCompat = "org.scala-lang.modules" %% "scala-collection-compat" % "2.11.0"
val scalaCollectionCompat = "org.scala-lang.modules" %% "scala-collection-compat" % "2.12.0"

val atmosphereJersey = "org.atmosphere" % "atmosphere-jersey" % "0.9.7"
val javaxServlet = "javax.servlet" % "servlet-api" % "2.5"
Expand All @@ -43,13 +43,13 @@ object Dependencies {
val jettyWebapp = jettyServer.withName("jetty-webapp")
val jettyUtil = jettyServer.withName("jetty-util")

val jRubyComplete = "org.jruby" % "jruby-complete" % "9.4.6.0"
val jRubyComplete = "org.jruby" % "jruby-complete" % "9.4.7.0"
val junit = "junit" % "junit" % "4.13.2"
val karafShell = "org.apache.karaf.shell" % "org.apache.karaf.shell.console" % "4.4.5"
val karafShell = "org.apache.karaf.shell" % "org.apache.karaf.shell.console" % "4.4.6"
val logbackClassic = "ch.qos.logback" % "logback-classic" % "1.3.14"
val osgiCore = "org.osgi" % "org.osgi.core" % "6.0.0"
val rhinoCoffeeScript = "tv.cntt" % "rhinocoffeescript" % "1.12.7"
val scalamd = ("org.scalatra.scalate" %% "scalamd" % "1.7.3").cross(CrossVersion.for3Use2_13)
val scalamd = ("org.scalatra.scalate" %% "scalamd" % "1.8.0").cross(CrossVersion.for3Use2_13)
val scalaTest = Def.setting {
Seq(
"org.scalatest" %% "scalatest-funsuite" % "3.2.18",
Expand All @@ -58,8 +58,8 @@ object Dependencies {
)
}
val seleniumDriver = "org.seleniumhq.selenium" % "selenium-htmlunit-driver" % "2.52.0"
val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.12"
val springMVC = "org.springframework" % "spring-webmvc" % "5.3.32"
val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.13"
val springMVC = "org.springframework" % "spring-webmvc" % "5.3.34"
val scalaReflect: (String, String) => ModuleID = _ % "scala-reflect" % _
val snakeYaml = "org.yaml" % "snakeyaml" % "2.2"
val wikitextConfluence = "org.fusesource.wikitext" % "confluence-core" % "1.4"
Expand Down
4 changes: 2 additions & 2 deletions project/MimaSettings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ object MimaSettings {
//

// NOTE: will start validating bin-compatibility since 1.9
val previousVersions = (0 to 7).map(patch => s"1.9.$patch").toSet
// val previousVersions = Set.empty[String]
// val previousVersions = (0 to 7).map(patch => s"1.10.$patch").toSet
val previousVersions = Set.empty[String]

val mimaSettings = Seq(
ThisBuild / mimaBinaryIssueFilters ++= 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.9.9
sbt.version=1.10.0
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.21")
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3")
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.0.1")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("org.scalariform" % "sbt-scalariform" % "1.8.3")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.6.4")

Expand Down

0 comments on commit 8f5937b

Please sign in to comment.