Skip to content

Commit ce4fe64

Browse files
committed
HSEARCH-5532 Point to docs.hibernate.org instead of docs.jboss.org/hibernate in various docs
1 parent c9f871e commit ce4fe64

File tree

12 files changed

+27
-27
lines changed

12 files changed

+27
-27
lines changed

MAINTAINERS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ If you **added a new Maven module** that should be included in the distribution,
165165
Once you trigger the CI job, it automatically pushes artifacts to the
166166
[OSSRH repository manager](https://oss.sonatype.org/#stagingRepositories),
167167
the distribution to [SourceForge](https://sourceforge.net/projects/hibernate/files/hibernate-search/)
168-
and the documentation to [docs.jboss.org](https://docs.jboss.org/hibernate/search/).
168+
and the documentation to [docs.hibernate.org](https://docs.hibernate.org/search/).
169169

170170
* Transfer the released issues in JIRA to the "Closed state":
171171
* Go to [the list of releases](https://hibernate.atlassian.net/projects/HSEARCH?selectedItem=com.atlassian.jira.jira-projects-plugin%3Arelease-page)

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,27 @@ or remote [Elasticsearch](https://www.elastic.co/products/elasticsearch)/[OpenSe
1515

1616
It features:
1717

18-
* [**Declarative mapping**](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#mapper-orm-mapping)
18+
* [**Declarative mapping**](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#mapper-orm-mapping)
1919
of entity properties to index fields,
2020
either through annotations or a programmatic API.
21-
* [**On-demand mass indexing**](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#mapper-orm-indexing-massindexer)
21+
* [**On-demand mass indexing**](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#mapper-orm-indexing-massindexer)
2222
of all entities in the database,
2323
to initialize the indexes with pre-existing data.
24-
* [**On-the-fly listener-triggered indexing**](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#listener-triggered-indexing)
24+
* [**On-the-fly listener-triggered indexing**](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#listener-triggered-indexing)
2525
of entities modified through a Hibernate ORM session,
2626
to always keep the indexes up-to-date.
27-
* [**A Search DSL**](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#search-dsl)
27+
* [**A Search DSL**](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#search-dsl)
2828
to easily build full-text search queries
2929
and retrieve the hits as Hibernate ORM entities.
30-
* And more: [configuration of analyzers](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#concepts-analysis),
31-
many different [predicates](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#search-dsl-predicate)
32-
and [sorts](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#search-dsl-sort)
30+
* And more: [configuration of analyzers](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#concepts-analysis),
31+
many different [predicates](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#search-dsl-predicate)
32+
and [sorts](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#search-dsl-sort)
3333
in the Search DSL,
34-
[spatial support](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#mapper-orm-geopoint).
35-
search queries returning [projections](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#search-dsl-projection)
34+
[spatial support](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#mapper-orm-geopoint).
35+
search queries returning [projections](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#search-dsl-projection)
3636
instead of entities,
37-
[aggregations](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#search-dsl-aggregation),
38-
advanced customization of the mapping using [bridges](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#mapper-orm-bridge),
37+
[aggregations](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#search-dsl-aggregation),
38+
advanced customization of the mapping using [bridges](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#mapper-orm-bridge),
3939
...
4040

4141
For example, map your entities like this:

build/parents/build/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<version.org.jboss.logging.jboss-logging>3.6.1.Final</version.org.jboss.logging.jboss-logging>
2525
<!--Once the tools version is upgraded see if org.codehaus.plexus can be upgraded as well and update the dependabot config accordingly. -->
2626
<version.org.jboss.logging.jboss-logging-tools>3.0.4.Final</version.org.jboss.logging.jboss-logging-tools>
27-
<javadoc.org.hibernate.search.url>https://docs.jboss.org/hibernate/search/${parsed-version.org.hibernate.search.majorVersion}.${parsed-version.org.hibernate.search.minorVersion}/api/</javadoc.org.hibernate.search.url>
27+
<javadoc.org.hibernate.search.url>https://docs.hibernate.org/search/${parsed-version.org.hibernate.search.majorVersion}.${parsed-version.org.hibernate.search.minorVersion}/api/</javadoc.org.hibernate.search.url>
2828

2929
<!-- >>> Engine -->
3030
<!-- Nothing beyond common dependencies -->
@@ -100,8 +100,8 @@
100100
-->
101101
<version.org.hibernate.orm>7.1.9.Final</version.org.hibernate.orm>
102102

103-
<javadoc.org.hibernate.orm.url>https://docs.jboss.org/hibernate/orm/${parsed-version.org.hibernate.orm.majorVersion}.${parsed-version.org.hibernate.orm.minorVersion}/javadocs/</javadoc.org.hibernate.orm.url>
104-
<documentation.org.hibernate.orm.url>https://docs.jboss.org/hibernate/orm/${parsed-version.org.hibernate.orm.majorVersion}.${parsed-version.org.hibernate.orm.minorVersion}/userguide/html_single/Hibernate_User_Guide.html</documentation.org.hibernate.orm.url>
103+
<javadoc.org.hibernate.orm.url>https://docs.hibernate.org/orm/${parsed-version.org.hibernate.orm.majorVersion}.${parsed-version.org.hibernate.orm.minorVersion}/javadocs/</javadoc.org.hibernate.orm.url>
104+
<documentation.org.hibernate.orm.url>https://docs.hibernate.org/orm/${parsed-version.org.hibernate.orm.majorVersion}.${parsed-version.org.hibernate.orm.minorVersion}/userguide/html_single/Hibernate_User_Guide.html</documentation.org.hibernate.orm.url>
105105
<!-- These version must be kept in sync with the version of the dependency in Hibernate ORM 7.
106106
DO NOT USE DEPENDENCY MANAGEMENT FOR THESE DEPENDENCIES!
107107
Thanks to not using dependency management for these dependencies, we get a build failure

documentation/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,8 +361,8 @@
361361
<hibernateSearchVersionShort>${parsed-version.org.hibernate.search.majorVersion}.${parsed-version.org.hibernate.search.minorVersion}</hibernateSearchVersionShort>
362362
<hibernateSearchPreviousStableVersionShort>${parsed-version.org.hibernate.search.previous-stable.majorVersion}.${parsed-version.org.hibernate.search.previous-stable.minorVersion}</hibernateSearchPreviousStableVersionShort>
363363
<hibernateSearchJavadocUrl>${javadoc.org.hibernate.search.url}</hibernateSearchJavadocUrl>
364-
<hibernateSearchDocUrl>https://docs.jboss.org/hibernate/search/${parsed-version.org.hibernate.search.majorVersion}.${parsed-version.org.hibernate.search.minorVersion}/reference/en-US/html_single/</hibernateSearchDocUrl>
365-
<hibernateSearchPreviousStableDocUrl>https://docs.jboss.org/hibernate/search/${parsed-version.org.hibernate.search.previous-stable.majorVersion}.${parsed-version.org.hibernate.search.previous-stable.minorVersion}/reference/en-US/html_single/</hibernateSearchPreviousStableDocUrl>
364+
<hibernateSearchDocUrl>https://docs.hibernate.org/search/${parsed-version.org.hibernate.search.majorVersion}.${parsed-version.org.hibernate.search.minorVersion}/reference/en-US/html_single/</hibernateSearchDocUrl>
365+
<hibernateSearchPreviousStableDocUrl>https://docs.hibernate.org/search/${parsed-version.org.hibernate.search.previous-stable.majorVersion}.${parsed-version.org.hibernate.search.previous-stable.minorVersion}/reference/en-US/html_single/</hibernateSearchPreviousStableDocUrl>
366366
<hibernateSearchJiraUrl>https://hibernate.atlassian.net/browse</hibernateSearchJiraUrl>
367367
<hibernateSearchMigrationGuidesIndexUrl>https://hibernate.org/search/documentation/migrate/</hibernateSearchMigrationGuidesIndexUrl>
368368
<hibernateCommunityUrl>https://hibernate.org/community</hibernateCommunityUrl>

documentation/src/main/asciidoc/internals/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
:title-logo-image: image:hibernate_logo_a.png[align=left,pdfwidth=33%]
1313
:html-meta-description: Hibernate Search, full text search for your entities - Internals of Hibernate Search
1414
:html-meta-keywords: hibernate, search, hibernate search, full text, lucene, elasticsearch, opensearch
15-
:html-meta-canonical-link: https://docs.jboss.org/hibernate/stable/search/internals/html_single/
15+
:html-meta-canonical-link: https://docs.hibernate.org/stable/search/internals/html_single/
1616

1717
This section is intended for new Hibernate Search contributors looking for an introduction
1818
to how Hibernate Search works.

documentation/src/main/asciidoc/migration/index.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
:title-logo-image: image:hibernate_logo_a.png[align=left,pdfwidth=33%]
1313
:html-meta-description: Hibernate Search, full text search for your entities - Migration Guide
1414
:html-meta-keywords: hibernate, search, hibernate search, full text, lucene, elasticsearch, opensearch
15-
:html-meta-canonical-link: https://docs.jboss.org/hibernate/search/{hibernateSearchVersionShort}/migration/html_single/
15+
:html-meta-canonical-link: https://docs.hibernate.org/search/{hibernateSearchVersionShort}/migration/html_single/
1616

1717
[[introduction]]
1818
== [[_introduction]] Introduction
@@ -36,7 +36,7 @@ others because of more fundamental changes
3636
(like moving away from using Lucene types in Hibernate Search APIs).
3737
3838
When migrating from Hibernate Search 5, you are encouraged to migrate first to Hibernate Search 6.0
39-
using the https://docs.jboss.org/hibernate/search/6.0/migration/html_single/[6.0 migration guide],
39+
using the https://docs.hibernate.org/search/6.0/migration/html_single/[6.0 migration guide],
4040
and only then to later versions (which will be significantly easier).
4141
====
4242

@@ -66,7 +66,7 @@ older indexes can be read from and written to without reindexing.
6666
=== Outbox polling database tables
6767

6868
The event and agent database tables used for
69-
link:https://docs.jboss.org/hibernate/search/{hibernateSearchVersionShort}/reference/en-US/html_single/#coordination-database-polling[outbox-polling]
69+
link:https://docs.hibernate.org/search/{hibernateSearchVersionShort}/reference/en-US/html_single/#coordination-database-polling[outbox-polling]
7070
in Hibernate Search {hibernateSearchVersion}
7171
are backward-compatible with Hibernate Search {hibernateSearchPreviousStableVersionShort}:
7272
no database schema update is necessary for these tables.

documentation/src/main/asciidoc/public/getting-started/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
:title-logo-image: image:hibernate_logo_a.png[align=left,pdfwidth=33%]
1212
:html-meta-description: Hibernate Search, full text search for your entities - Getting Started Guides
1313
:html-meta-keywords: hibernate, search, hibernate search, full text, lucene, elasticsearch, opensearch
14-
:html-meta-canonical-link: https://docs.jboss.org/hibernate/stable/search/getting-started/en-US/html_single/
14+
:html-meta-canonical-link: https://docs.hibernate.org/stable/search/getting-started/en-US/html_single/
1515

1616
:relfileprefix: ../../
1717
:relfilesuffix: /../en-US/html_single/index.html

documentation/src/main/asciidoc/public/getting-started/orm/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
:title-logo-image: image:hibernate_logo_a.png[align=left,pdfwidth=33%]
1414
:html-meta-description: Hibernate Search, full text search for your entities - Getting started with Hibernate Search in Hibernate ORM
1515
:html-meta-keywords: hibernate, search, hibernate search, full text, lucene, elasticsearch, opensearch
16-
:html-meta-canonical-link: https://docs.jboss.org/hibernate/stable/search/getting-started/orm/en-US/html_single/
16+
:html-meta-canonical-link: https://docs.hibernate.org/stable/search/getting-started/orm/en-US/html_single/
1717

1818
:relfileprefix: ../../
1919
:relfilesuffix: /../en-US/html_single/index.html

documentation/src/main/asciidoc/public/getting-started/standalone/index.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
:title-logo-image: image:hibernate_logo_a.png[align=left,pdfwidth=33%]
1414
:html-meta-description: Hibernate Search, full text search for your entities - Getting started with Hibernate Search’s Standalone POJO Mapper
1515
:html-meta-keywords: hibernate, search, hibernate search, full text, lucene, elasticsearch, opensearch
16-
:html-meta-canonical-link: https://docs.jboss.org/hibernate/stable/search/getting-started/standalone/en-US/html_single/
16+
:html-meta-canonical-link: https://docs.hibernate.org/stable/search/getting-started/standalone/en-US/html_single/
1717

1818
:relfileprefix: ../../
1919
:relfilesuffix: /../en-US/html_single/index.html

documentation/src/main/asciidoc/public/reference/_migrating.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ Additionally, be aware that a lot of APIs have changed, some only because of a p
2222
others because of more fundamental changes
2323
(like moving away from using Lucene types in Hibernate Search APIs).
2424
For that reason, you are encouraged to migrate first to Hibernate Search 6.0
25-
using the https://docs.jboss.org/hibernate/search/6.0/migration/html_single/[6.0 migration guide],
25+
using the https://docs.hibernate.org/search/6.0/migration/html_single/[6.0 migration guide],
2626
and only then to later versions (which will be significantly easier).
2727
====

0 commit comments

Comments
 (0)