Skip to content

Commit

Permalink
Trigger all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Apr 29, 2024
1 parent d13bd72 commit 6693502
Show file tree
Hide file tree
Showing 31 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions play-java-akka-cluster-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ libraryDependencies += ("com.typesafe.akka" %% "akka-cluster-typed" % akkaVersio
// Sending messages from a node to another in the Akka Cluster requires serializing. This
// example application uses the default Akka Jackson serializer with the CBOR format.
// See also `conf/serialization.conf` and `services.CborSerializable` for more info.
// foo
1 change: 1 addition & 0 deletions play-java-chatroom-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ lazy val root = (project in file("."))
"-Xlint:deprecation"
)
)
// foo
1 change: 1 addition & 0 deletions play-java-compile-di-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ ThisBuild / scalacOptions ++= List("-encoding", "utf8", "-deprecation", "-featur
ThisBuild / javacOptions ++= List("-Xlint:unchecked", "-Xlint:deprecation", "-Werror")

Test / testOptions := Seq(Tests.Argument(TestFrameworks.JUnit, "-a", "-v"))
// foo
1 change: 1 addition & 0 deletions play-java-dagger2-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ lazy val root = (project in file("."))
// Verbose tests
(Test / testOptions) := Seq(Tests.Argument(TestFrameworks.JUnit, "-a", "-v"))
)
// foo
1 change: 1 addition & 0 deletions play-java-ebean-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ lazy val root = (project in file("."))
(Test / testOptions) += Tests.Argument(TestFrameworks.JUnit, "-a", "-v"),
javacOptions ++= Seq("-Xlint:unchecked", "-Xlint:deprecation", "-Werror")
)
// foo
1 change: 1 addition & 0 deletions play-java-fileupload-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ lazy val root = (project in file("."))
testOptions += Tests.Argument(TestFrameworks.JUnit, "-a", "-v"),
javacOptions ++= Seq("-Xlint:unchecked", "-Xlint:deprecation", "-Werror")
)
// foo
1 change: 1 addition & 0 deletions play-java-forms-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ javacOptions ++= Seq(
"-Xlint:deprecation",
"-Werror"
)
// foo
1 change: 1 addition & 0 deletions play-java-grpc-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,4 @@ val TestDeps = Seq(
// open docs/target/paradox/site/main/index.html
lazy val docs = (project in file("docs"))
.enablePlugins(ParadoxPlugin)
// foo
1 change: 1 addition & 0 deletions play-java-hello-world-tutorial/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ crossScalaVersions := Seq("2.13.13", "3.3.3")
scalaVersion := crossScalaVersions.value.head

libraryDependencies += guice
// foo
1 change: 1 addition & 0 deletions play-java-jpa-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ lazy val root = (project in file("."))
javacOptions ++= List("-Xlint:unchecked", "-Xlint:deprecation", "-Werror"),
PlayKeys.externalizeResourcesExcludes += baseDirectory.value / "conf" / "META-INF" / "persistence.xml"
)
// foo
1 change: 1 addition & 0 deletions play-java-rest-api-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ lazy val gatling = (project in file("gatling"))
"io.gatling" % "gatling-test-framework" % gatlingVersion % Test
)
)
// foo
1 change: 1 addition & 0 deletions play-java-starter-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ lazy val root = (project in file("."))
// Make verbose tests
(Test / testOptions) := Seq(Tests.Argument(TestFrameworks.JUnit, "-a", "-v"))
)
// foo
1 change: 1 addition & 0 deletions play-java-streaming-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ TwirlKeys.templateImports ++= Seq(
"play.mvc.Http.{ RequestHeader => JRequestHeader }",
"views.html.helper.CSPNonce"
)
// foo
1 change: 1 addition & 0 deletions play-java-websocket-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ lazy val root = (project in file("."))
"-Werror"
)
)
// foo
1 change: 1 addition & 0 deletions play-scala-anorm-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ lazy val root = (project in file("."))
// Needed for ssl-config to create self signed certificated under Java 17
Test / javaOptions ++= List("--add-exports=java.base/sun.security.x509=ALL-UNNAMED"),
)
// foo
1 change: 1 addition & 0 deletions play-scala-chatroom-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ lazy val root = (project in file("."))
"-Werror"
)
)
// foo
1 change: 1 addition & 0 deletions play-scala-compile-di-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ lazy val root = (project in file("."))
// Needed for ssl-config to create self signed certificated under Java 17
Test / javaOptions ++= List("--add-exports=java.base/sun.security.x509=ALL-UNNAMED"),
)
// foo
1 change: 1 addition & 0 deletions play-scala-fileupload-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ lazy val root = (project in file("."))
// Needed for ssl-config to create self signed certificated under Java 17
Test / javaOptions ++= List("--add-exports=java.base/sun.security.x509=ALL-UNNAMED"),
)
// foo
1 change: 1 addition & 0 deletions play-scala-forms-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ lazy val root = (project in file("."))
// Needed for ssl-config to create self signed certificated under Java 17
Test / javaOptions ++= List("--add-exports=java.base/sun.security.x509=ALL-UNNAMED"),
)
// foo
1 change: 1 addition & 0 deletions play-scala-grpc-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,4 @@ Test / javaOptions ++= List("--add-exports=java.base/sun.security.x509=ALL-UNNAM
// open docs/target/paradox/site/main/index.html
lazy val docs = (project in file("docs"))
.enablePlugins(ParadoxPlugin)
// foo
1 change: 1 addition & 0 deletions play-scala-hello-world-tutorial/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ lazy val root = (project in file("."))
"-Werror"
)
)
// foo
1 change: 1 addition & 0 deletions play-scala-isolated-slick-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,4 @@ lazy val root = (project in file("."))
)
.aggregate(slick)
.dependsOn(slick)
// foo
1 change: 1 addition & 0 deletions play-scala-log4j2-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ lazy val root = (project in file("."))
// Needed for ssl-config to create self signed certificated under Java 17
Test / javaOptions ++= List("--add-exports=java.base/sun.security.x509=ALL-UNNAMED"),
)
// foo
1 change: 1 addition & 0 deletions play-scala-macwire-di-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ lazy val root = (project in file("."))
// Needed for ssl-config to create self signed certificated under Java 17
Test / javaOptions ++= List("--add-exports=java.base/sun.security.x509=ALL-UNNAMED"),
)
// foo
1 change: 1 addition & 0 deletions play-scala-rest-api-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ lazy val docs = (project in file("docs")).enablePlugins(ParadoxPlugin).
crossScalaVersions := Seq(scala213, scala3),
paradoxProperties += ("download_url" -> "https://example.lightbend.com/v1/download/play-samples-play-scala-rest-api-example")
)
// foo
1 change: 1 addition & 0 deletions play-scala-secure-session-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ lazy val root = (project in file("."))
"-Werror"
)
)
// foo
1 change: 1 addition & 0 deletions play-scala-slick-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ lazy val computerDatabaseSample = sampleProject("computer-database")
lazy val basicSample = sampleProject("basic")

lazy val personSample = sampleProject("person")
// foo
1 change: 1 addition & 0 deletions play-scala-starter-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ lazy val root = (project in file("."))
// Needed for ssl-config to create self signed certificated under Java 17
Test / javaOptions ++= List("--add-exports=java.base/sun.security.x509=ALL-UNNAMED"),
)
// foo
1 change: 1 addition & 0 deletions play-scala-streaming-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ lazy val root = (project in file("."))
"-Werror"
)
)
// foo
1 change: 1 addition & 0 deletions play-scala-tls-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@ lazy val root = (project in file("."))
.dependsOn(one, two)

addCommandAlias("client", "runMain Main")
// foo
1 change: 1 addition & 0 deletions play-scala-websocket-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ lazy val root = (project in file("."))
"-Werror"
)
)
// foo

0 comments on commit 6693502

Please sign in to comment.