MVN

org.ow2.weblab.webservices : solr-engine

Maven & Gradle

Jul 17, 2012
1 usages

Solr Indexer/Searcher WebLab Web Service · This service implements the Indexer and Searcher interface of WebLab and connect to a remote SOLR engine in order to realize the functions. The connection is mandatory and thus the remote SOLR server should be started beforehand. Configuration of the SOLR server URL is found in src/main/webapp/WEB-INF/cxf-servlet.xml . See in particular "indexerServiceBean" and "searcherServiceBean". Moreover, the service implements several "Analyser" services that could be included in a complete search chain in order to: - enrich a ResultSet with metadata about Hits (see resultSetMetaEnricherServiceBean) - highlight snippet in ResultSet (see highlighterServiceBean) - provide facets related to the current results (see facetSuggestionServiceBean) - suggest spell correction of the original query (see spellSuggestionServiceBean)

<dependency>
    <groupId>org.ow2.weblab.webservices</groupId>
    <artifactId>solr-engine</artifactId>
    <version>2.1.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.ow2.weblab.webservices : solr-engine to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.1.3
  • Latest Release Candidate: 2.0.1-RC1

All Versions

Choose a version of org.ow2.weblab.webservices : solr-engine to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.1.x
solr-engine-2.1.3
solr-engine-2.1.2
solr-engine-2.1.1
solr-engine-2.1.0
solr-engine-2.1.0-RC1
solr-engine-2.1.0-SNAPSHOT
2.0.x
solr-engine-2.0.1-RC1

How to add a dependency to Maven

Add the following org.ow2.weblab.webservices : solr-engine maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.ow2.weblab.webservices</groupId>
    <artifactId>solr-engine</artifactId>
    <version>2.1.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.ow2.weblab.webservices : solr-engine gradle dependency to your build.gradle file:

implementation 'org.ow2.weblab.webservices:solr-engine:2.1.3'

Gradle Kotlin DSL: Add the following org.ow2.weblab.webservices : solr-engine gradle kotlin dependency to your build.gradle.kts file:

implementation("org.ow2.weblab.webservices:solr-engine:2.1.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.ow2.weblab.webservices : solr-engine sbt scala dependency to your build.sbt file:

libraryDependencies += "org.ow2.weblab.webservices" % "solr-engine" % "2.1.3"