hibernate-search-mapper-orm-orm6
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-mapper-orm-orm6</artifactId> <version>6.1.8.Final</version> </dependency>
<?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-parent-public-orm6</artifactId> <version>6.1.8.Final</version> <relativePath>../../parents/public</relativePath> </parent> <artifactId>hibernate-search-mapper-orm-orm6</artifactId> <name>Hibernate Search ORM Integration - ORM6</name> <description>Hibernate Search integration to Hibernate ORM - ORM6 version</description> <properties> <transform.original.pathFromRoot>mapper/orm</transform.original.pathFromRoot> <java.module.name>org.hibernate.search.mapper.orm</java.module.name> </properties> <dependencies> <dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-engine</artifactId> </dependency> <dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-mapper-pojo-base</artifactId> </dependency> <dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-util-common</artifactId> </dependency> <dependency> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-core</artifactId> </dependency> <dependency> <groupId>org.jboss</groupId> <artifactId>jandex</artifactId> <!-- DO NOT REMOVE and DO NOT MANAGE the version of this dependency. See the version property declaration. --> <version>${version.org.jboss.jandex}</version> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <!-- DO NOT REMOVE and DO NOT MANAGE the version of this dependency. See the version property declaration. --> <version>${version.jakarta.persistence}</version> </dependency> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.cdi-api</artifactId> <!-- DO NOT REMOVE and DO NOT MANAGE the version of this dependency. See the version property declaration. --> <version>${version.jakarta.enterprise}</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.transaction</groupId> <artifactId>jakarta.transaction-api</artifactId> <!-- DO NOT REMOVE and DO NOT MANAGE the version of this dependency. See the version property declaration. --> <version>${version.jakarta.transaction-api}</version> </dependency> <dependency> <groupId>org.hibernate.common</groupId> <artifactId>hibernate-commons-annotations</artifactId> <!-- DO NOT REMOVE and DO NOT MANAGE the version of this dependency. See the version property declaration. --> <version>${version.org.hibernate.commons.annotations.orm6}</version> </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-orm-orm6</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> <!-- DO NOT REMOVE and DO NOT MANAGE the version of this dependency. See the version property declaration. --> <version>${version.net.bytebuddy}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> </plugin> <plugin> <groupId>org.moditect</groupId> <artifactId>moditect-maven-plugin</artifactId> <executions> <execution> <id>add-module-infos</id> <configuration> <module> <moduleInfo> <requires> static jakarta.cdi; org.hibernate.*.impl; org.hibernate.*.internal; org.hibernate.*.impl.*; org.hibernate.*.internal.*; transitive org.hibernate.*; *; </requires> </moduleInfo> </module> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>