File tree Expand file tree Collapse file tree
sbt-play-ebean/src/main/scala/play/ebean/sbt Expand file tree Collapse file tree 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 @@ -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:git@github.com: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