File tree Expand file tree Collapse file tree 6 files changed +8
-5
lines changed
sbt-play-ebean/src/main/scala/play/ebean/sbt Expand file tree Collapse file tree 6 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 227fe92e05b8508927343db11bd4c6bbbd723253c1
33# Enable Java formatter
44367b1e5662a20cda35df21d715bd76d1bf4d2324
5+
6+ # Scala Steward: Reformat with scalafmt 3.9.8
7+ aa32f0df6ba6661a2f8620c10a15c66dddc23354
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ spaces.inImportCurlyBraces = true # more idiomatic to include whitepsace in im
1010trailingCommas = preserve
1111newlines.afterCurlyLambda = preserve
1212runner.dialect = scala212source3
13- version = 3.8 . 6
13+ version = 3.9 . 8
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ def enhanceEbeanClasses(
104104 // Ebean (really hacky sorry)
105105 val cp = classpath.map(_.data.toURI.toURL).toArray :+ classDirectory.toURI.toURL
106106 val cl = new java.net.URLClassLoader (cp)
107- val t = cl
107+ val t = cl
108108 .loadClass(" io.ebean.enhance.Transformer" )
109109 .getConstructor(classOf [ClassLoader ], classOf [String ])
110110 .newInstance(cl, " debug=0" )
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ spaces.inImportCurlyBraces = true # more idiomatic to include whitepsace in im
1313trailingCommas = preserve
1414newlines.afterCurlyLambda = preserve
1515runner.dialect = scala212source3
16- version = 3.8 . 6
16+ version = 3.9 . 8
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ object Common extends AutoPlugin {
3333 licenses := Seq (" Apache-2.0" -> url(" https://www.apache.org/licenses/LICENSE-2.0.html" )),
3434 // on the web
3535 homepage := Some (url(s " https://github.com/playframework/ $repoName" )),
36- scmInfo := Some (
36+ scmInfo := Some (
3737 ScmInfo (
3838 url(s " https://github.com/playframework/ $repoName" ),
3939 s " scm:git:[email protected] :playframework/ $repoName
.git "
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import scala.util.control.NonFatal
2828object PlayEbean extends AutoPlugin {
2929
3030 object autoImport {
31- val playEbeanModels = taskKey[Seq [String ]](" The packages that should be searched for ebean models to enhance." )
31+ val playEbeanModels = taskKey[Seq [String ]](" The packages that should be searched for ebean models to enhance." )
3232 val playEbeanVersion =
3333 settingKey[String ](" The version of Play ebean that should be added to the library dependencies." )
3434 val playEbeanDebugLevel = settingKey[Int ](
You can’t perform that action at this time.
0 commit comments