hibernate-search
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.atteo.moonshine</groupId> <artifactId>hibernate-search</artifactId> <version>1.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>services</artifactId> <groupId>org.atteo.moonshine</groupId> <version>1.2</version> </parent> <artifactId>hibernate-search</artifactId> <name>Hibernate Search</name> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>hibernate</artifactId> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-search</artifactId> <version>4.4.1.Final</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>atomikos</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>container-test-utils</artifactId> <scope>test</scope> </dependency> </dependencies> </project>