hibernate-search-mapper-orm-batch-jsr352-jberet-orm6
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-mapper-orm-batch-jsr352-jberet-orm6</artifactId> <version>6.2.1.Final</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Hibernate Search, full-text search for your domain model ~ ~ License: GNU Lesser General Public License (LGPL), version 2.1 or later ~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. --> <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-orm6</artifactId> <version>6.2.1.Final</version> <relativePath>../../../build/parents/public</relativePath> </parent> <artifactId>hibernate-search-mapper-orm-batch-jsr352-jberet-orm6</artifactId> <name>Hibernate Search Batch JSR-352 JBeret - ORM6</name> <description>Hibernate Search Batch JSR-352 integration - for JBeret - ORM6 version</description> <properties> <transform.original.pathFromRoot>mapper/orm-batch-jsr352/jberet</transform.original.pathFromRoot> <java.module.name>org.hibernate.search.batch.jsr352.jberet</java.module.name> </properties> <dependencies> <dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-mapper-orm-batch-jsr352-core-orm6</artifactId> </dependency> <dependency> <groupId>jakarta.batch</groupId> <artifactId>jakarta.batch-api</artifactId> <scope>provided</scope> </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>org.jberet</groupId> <artifactId>jberet-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-annotations</artifactId> </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> <!-- Do not generate module-info with moditect-maven-plugin: jberet-core.jar has an invalid automatic module name: org.jberet.jberet-core dash is an invalid character! --> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> </project>