hibernate-search-v5migrationhelper-orm-orm6
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-v5migrationhelper-orm-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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>hibernate-search-parent-public-orm6</artifactId> <groupId>org.hibernate.search</groupId> <version>6.2.1.Final</version> <relativePath>../../build/parents/public</relativePath> </parent> <artifactId>hibernate-search-v5migrationhelper-orm-orm6</artifactId> <name>Hibernate Search 5 Migration Helper - ORM - ORM6</name> <description>Helper to migrate from Hibernate Search 5 to 6, providing partial support for Hibernate Search 5 ORM APIs on top of Hibernate Search 6 - with ORM6</description> <properties> <transform.original.pathFromRoot>v5migrationhelper/orm</transform.original.pathFromRoot> <java.module.name>org.hibernate.search.v5migrationhelper.orm</java.module.name> <!-- This is based on legacy code and there are plenty of problems that we don't care to fix --> <jqassistant.skip>true</jqassistant.skip> <forbiddenapis.skip>true</forbiddenapis.skip> <sonar.skip>true</sonar.skip> </properties> <dependencies> <dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-v5migrationhelper-engine</artifactId> </dependency> <dependency> <groupId>org.hibernate.search</groupId> <artifactId>hibernate-search-mapper-orm-orm6</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <!-- This is based on legacy code and there are plenty of warnings that we don't care to fix --> <failOnWarning>false</failOnWarning> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-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: This module depends on Lucene jars that have split packages module issue. --> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> </project>