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 scala-library 2.12.18 #598

Merged
merged 2 commits into from
Jul 20, 2023
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
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ lazy val noPublishSettings = Seq(
publishArtifact := false
)

lazy val scalaV = "2.12.16"
lazy val scalaV = "2.12.18"

lazy val root = project.in(file("."))
.aggregate(playSwagger, sbtPlaySwagger)
Expand Down Expand Up @@ -47,6 +47,7 @@ lazy val playSwagger = project.in(file("core"))
"joda-time" % "joda-time" % "2.12.5" % Test,
"com.google.errorprone" % "error_prone_annotations" % "2.19.1" % Test
),
libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always,
addCompilerPlugin("com.github.takezoe" %% "runtime-scaladoc-reader" % "1.0.3"),
scalaVersion := scalaV,
crossScalaVersions := Seq(scalaVersion.value, "2.13.10"),
Expand Down
2 changes: 1 addition & 1 deletion example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ scalafixDependencies in ThisBuild ++= Seq(

lazy val root = (project in file(".")).enablePlugins(PlayScala, SwaggerPlugin) //enable plugin

scalaVersion := "2.12.16"
scalaVersion := "2.12.18"

libraryDependencies ++= Seq(
jdbc,
Expand Down
2 changes: 2 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")

addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.0")

ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name := "app"

version := "1.0.1-BETA1"

scalaVersion := "2.12.16"
scalaVersion := "2.12.18"

swaggerDomainNameSpaces := Seq("namespace1", "namespace2")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name := "app"

version := "1.0.1-BETA1"

scalaVersion := "2.12.16"
scalaVersion := "2.12.18"

swaggerDomainNameSpaces := Seq("namespace1", "namespace2")

Expand Down