- Fizzed, Inc.
- Joe Lauer (Twitter: @jjlauer)
Play Framework 2.x module to simplify indexing and searching documents with Apache Solr (Lucene).
Module is used in production but this repo does not yet contain a polished example demonstrating its use.
PlayFramework version | Module version |
---|---|
2.3.x | 1.2.1 |
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-solr" % "1.2.1"
)
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-solr" % "1.2.1"
)
...
}