Skip to content

Commit

Permalink
Bump 2.8 examples to Scalatra 2.8.2 (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
takezoe authored Sep 25, 2021
1 parent eafec04 commit 49ce414
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 16 deletions.
2 changes: 1 addition & 1 deletion 2.8/async/akka-examples/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "Akka Examples"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.13.6"

val ScalatraVersion = "2.8.1"
val ScalatraVersion = "2.8.2"

libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.6.15",
Expand Down
2 changes: 1 addition & 1 deletion 2.8/deployment/scalatra-heroku/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "Heroku Example"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.13.6"

val ScalatraVersion = "2.8.1"
val ScalatraVersion = "2.8.2"

libraryDependencies ++= Seq(
"org.scalatra" %% "scalatra" % ScalatraVersion,
Expand Down
4 changes: 1 addition & 3 deletions 2.8/formats/scalatra-forms/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "Scalatra Forms Example"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.13.6"

val ScalatraVersion = "2.8.1"
val ScalatraVersion = "2.8.2"

libraryDependencies ++= Seq(
"org.json4s" %% "json4s-jackson" % "3.6.7",
Expand All @@ -15,7 +15,5 @@ libraryDependencies ++= Seq(
"javax.servlet" % "javax.servlet-api" % "3.1.0" % Provided
)

ThisBuild / evictionErrorLevel := Level.Warn

enablePlugins(SbtTwirl)
enablePlugins(JettyPlugin)
2 changes: 1 addition & 1 deletion 2.8/http/authentication-demo/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "Authentication Demo"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.13.6"

val ScalatraVersion = "2.8.1"
val ScalatraVersion = "2.8.2"

libraryDependencies ++= Seq(
"org.scalatra" %% "scalatra-auth" % ScalatraVersion,
Expand Down
2 changes: 1 addition & 1 deletion 2.8/http/scalatra-gzip/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "Scalatra Gzip"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.13.6"

val ScalatraVersion = "2.8.1"
val ScalatraVersion = "2.8.2"

libraryDependencies ++= Seq(
"org.scalatra" %% "scalatra" % ScalatraVersion,
Expand Down
2 changes: 1 addition & 1 deletion 2.8/http/scalatra-http-demo/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "Scalatra HTTP Demo"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.13.6"

val ScalatraVersion = "2.8.1"
val ScalatraVersion = "2.8.2"

libraryDependencies ++= Seq(
"org.scalatra" %% "scalatra" % ScalatraVersion,
Expand Down
2 changes: 1 addition & 1 deletion 2.8/http/scentry-auth-demo/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "ScentryAuthDemo"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.13.6"

val ScalatraVersion = "2.8.1"
val ScalatraVersion = "2.8.2"

libraryDependencies ++= Seq(
"org.scalatra" %% "scalatra-auth" % ScalatraVersion,
Expand Down
2 changes: 1 addition & 1 deletion 2.8/persistence/scalatra-mongo/build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val ScalatraVersion = "2.8.1"
val ScalatraVersion = "2.8.2"

organization := "org.scalatra"

Expand Down
2 changes: 1 addition & 1 deletion 2.8/persistence/scalatra-slick/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "Scalatra Slick"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.13.6"

val ScalatraVersion = "2.8.1"
val ScalatraVersion = "2.8.2"

libraryDependencies ++= Seq(
"org.scalatra" %% "scalatra" % ScalatraVersion,
Expand Down
2 changes: 1 addition & 1 deletion 2.8/persistence/scalatra-squeryl/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "Scalatra Squeryl"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.13.6"

val ScalatraVersion = "2.8.1"
val ScalatraVersion = "2.8.2"

libraryDependencies ++= Seq(
"org.scalatra" %% "scalatra" % ScalatraVersion,
Expand Down
2 changes: 1 addition & 1 deletion 2.8/swagger-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "Flowershop"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.13.6"

val ScalatraVersion = "2.8.1"
val ScalatraVersion = "2.8.2"

libraryDependencies ++= Seq(
"org.json4s" %% "json4s-native" % "4.0.1",
Expand Down
4 changes: 1 addition & 3 deletions 2.8/views/scalatra-twirl/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "Scalatra Twirl"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.13.6"

val ScalatraVersion = "2.8.1"
val ScalatraVersion = "2.8.2"

libraryDependencies ++= Seq(
"org.scalatra" %% "scalatra" % ScalatraVersion,
Expand All @@ -13,7 +13,5 @@ libraryDependencies ++= Seq(
"javax.servlet" % "javax.servlet-api" % "3.1.0" % Provided
)

ThisBuild / evictionErrorLevel := Level.Warn

enablePlugins(SbtTwirl)
enablePlugins(JettyPlugin)

0 comments on commit 49ce414

Please sign in to comment.