-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HSEARCH-4928 Add relocation artifact
- Loading branch information
1 parent
29758bc
commit c8efeef
Showing
11 changed files
with
119 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?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</artifactId> | ||
<version>7.0.0-SNAPSHOT</version> | ||
<relativePath>../../..</relativePath> | ||
</parent> | ||
<artifactId>hibernate-search-parent-relocation</artifactId> | ||
<packaging>pom</packaging> | ||
|
||
<name>Hibernate Search Parent POM for Relocation Artifacts</name> | ||
<description>Common build configuration for all relocation artifacts</description> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>flatten-maven-plugin</artifactId> | ||
<configuration> | ||
<!-- Keep dependency management --> | ||
<flattenMode>bom</flattenMode> | ||
<pomElements> | ||
<!-- But not properties, they are not useful in a bom --> | ||
<properties>remove</properties> | ||
<distributionManagement>keep</distributionManagement> | ||
</pomElements> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?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-relocation</artifactId> | ||
<version>7.0.0-SNAPSHOT</version> | ||
<relativePath>../../build/parents/relocation</relativePath> | ||
</parent> | ||
<packaging>pom</packaging> | ||
<artifactId>hibernate-search-mapper-orm-coordination-outbox-polling</artifactId> | ||
|
||
<name>Hibernate Search ORM Integration - Coordination - Outbox Polling (Relocation)</name> | ||
<description>Hibernate ORM integration using outbox polling as coordination strategy</description> | ||
|
||
<properties> | ||
<!-- This is a publicly distributed module that should be published: --> | ||
<deploy.skip>false</deploy.skip> | ||
</properties> | ||
|
||
<distributionManagement> | ||
<relocation> | ||
<artifactId>hibernate-search-mapper-orm-outbox-polling</artifactId> | ||
</relocation> | ||
</distributionManagement> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters