- Fizzed, Inc.
- Joe Lauer (Twitter: @jjlauer)
Play Framework 2.x module that provides utility classes. Classes for search engine optimization, social network (card) integration, form rendering/handling, and controllers.
PlayFramework version | Module version |
---|---|
2.3.x | 1.2.0 |
2.2.x | 1.1.0 |
2.1.x | 1.0.0 |
This module is published to Maven Central. You will need to include the module in your
dependencies list, in build.sbt
or Build.scala
file:
libraryDependencies ++= Seq(
"com.fizzed" %% "fizzed-play-module-util" % "1.2.0"
)
import sbt._
import Keys._
import play.Project._
object ApplicationBuild extends Build {
val appName = "sample"
val appVersion = "1.0-SNAPSHOT"
val appDependencies = Seq(
javaCore,
javaJdbc,
javaEbean,
"com.fizzed" %% "fizzed-play-module-util" % "1.2.0"
)
...
}