hibernate-search-engine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-engine</artifactId> <version>6.0.9.Final</version> </dependency>
<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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-parent-public</artifactId> <version>6.0.9.Final</version> <relativePath>../parents/public</relativePath> </parent> <artifactId>hibernate-search-engine</artifactId> <name>Hibernate Search Engine</name> <description>Hibernate Search engine, always required</description> <properties> <java.module.name>org.hibernate.search.engine</java.module.name> </properties> <dependencies> <dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-util-common</artifactId> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-annotations</artifactId> </dependency> <dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-util-internal-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jboss.maven.plugins</groupId> <artifactId>maven-injection-plugin</artifactId> <executions> <execution> <phase>compile</phase> <goals> <goal>bytecode</goal> </goals> </execution> </executions> <configuration> <bytecodeInjections> <bytecodeInjection> <expression>${project.version}</expression> <targetMembers> <methodBodyReturn> <className>org.hibernate.search.engine.Version</className> <methodName>versionString</methodName> </methodBodyReturn> </targetMembers> </bytecodeInjection> </bytecodeInjections> </configuration> </plugin> </plugins> </build> </project>