Skip to content

Commit 4c3e6d2

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

File tree

11 files changed

+26
-26
lines changed

11 files changed

+26
-26
lines changed

MAINTAINERS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ have not been kept up-to-date, and might need a refresh.
129129
Once you trigger the CI job, it automatically pushes artifacts to the
130130
[OSSRH repository manager](https://oss.sonatype.org/#stagingRepositories),
131131
the distribution to [SourceForge](https://sourceforge.net/projects/hibernate/files/hibernate-search/)
132-
and the documentation to [docs.jboss.org](https://docs.jboss.org/hibernate/search/).
132+
and the documentation to [docs.hibernate.org](https://docs.hibernate.org/search/).
133133

134134
* Transfer the released issues in JIRA to the "Closed state":
135135
* 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
@@ -13,27 +13,27 @@ or remote [Elasticsearch](https://www.elastic.co/products/elasticsearch)/[OpenSe
1313

1414
It features:
1515

16-
* [**Declarative mapping**](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#mapper-orm-mapping)
16+
* [**Declarative mapping**](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#mapper-orm-mapping)
1717
of entity properties to index fields,
1818
either through annotations or a programmatic API.
19-
* [**On-demand mass indexing**](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#mapper-orm-indexing-massindexer)
19+
* [**On-demand mass indexing**](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#mapper-orm-indexing-massindexer)
2020
of all entities in the database,
2121
to initialize the indexes with pre-existing data.
22-
* [**On-the-fly listener-triggered indexing**](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#listener-triggered-indexing)
22+
* [**On-the-fly listener-triggered indexing**](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#listener-triggered-indexing)
2323
of entities modified through a Hibernate ORM session,
2424
to always keep the indexes up-to-date.
25-
* [**A Search DSL**](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#search-dsl)
25+
* [**A Search DSL**](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#search-dsl)
2626
to easily build full-text search queries
2727
and retrieve the hits as Hibernate ORM entities.
28-
* And more: [configuration of analyzers](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#concepts-analysis),
29-
many different [predicates](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#search-dsl-predicate)
30-
and [sorts](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#search-dsl-sort)
28+
* And more: [configuration of analyzers](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#concepts-analysis),
29+
many different [predicates](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#search-dsl-predicate)
30+
and [sorts](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#search-dsl-sort)
3131
in the Search DSL,
32-
[spatial support](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#mapper-orm-geopoint).
33-
search queries returning [projections](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#search-dsl-projection)
32+
[spatial support](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#mapper-orm-geopoint).
33+
search queries returning [projections](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#search-dsl-projection)
3434
instead of entities,
35-
[aggregations](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#search-dsl-aggregation),
36-
advanced customization of the mapping using [bridges](https://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/#mapper-orm-bridge),
35+
[aggregations](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#search-dsl-aggregation),
36+
advanced customization of the mapping using [bridges](https://docs.hibernate.org/stable/search/reference/en-US/html_single/#mapper-orm-bridge),
3737
...
3838

3939
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
@@ -23,7 +23,7 @@
2323
<!-- >>> Common -->
2424
<version.org.jboss.logging.jboss-logging>3.5.3.Final</version.org.jboss.logging.jboss-logging>
2525
<version.org.jboss.logging.jboss-logging-tools>2.2.1.Final</version.org.jboss.logging.jboss-logging-tools>
26-
<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>
26+
<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>
2727

2828
<!-- >>> Engine -->
2929
<!-- Nothing beyond common dependencies -->
@@ -91,8 +91,8 @@
9191
-->
9292
<version.org.hibernate.orm>6.4.10.Final</version.org.hibernate.orm>
9393

94-
<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>
95-
<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>
94+
<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>
95+
<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>
9696
<!-- These version must be kept in sync with the version of the dependency in Hibernate ORM 6.
9797
DO NOT USE DEPENDENCY MANAGEMENT FOR THESE DEPENDENCIES!
9898
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
@@ -272,8 +272,8 @@
272272
<hibernateSearchVersionShort>${parsed-version.org.hibernate.search.majorVersion}.${parsed-version.org.hibernate.search.minorVersion}</hibernateSearchVersionShort>
273273
<hibernateSearchPreviousStableVersionShort>${parsed-version.org.hibernate.search.previous-stable.majorVersion}.${parsed-version.org.hibernate.search.previous-stable.minorVersion}</hibernateSearchPreviousStableVersionShort>
274274
<hibernateSearchJavadocUrl>${javadoc.org.hibernate.search.url}</hibernateSearchJavadocUrl>
275-
<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>
276-
<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>
275+
<hibernateSearchDocUrl>https://docs.hibernate.org/search/${parsed-version.org.hibernate.search.majorVersion}.${parsed-version.org.hibernate.search.minorVersion}/reference/en-US/html_single/</hibernateSearchDocUrl>
276+
<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>
277277
<hibernateSearchJiraUrl>https://hibernate.atlassian.net/browse</hibernateSearchJiraUrl>
278278
<hibernateSearchMigrationGuidesIndexUrl>https://hibernate.org/search/documentation/migrate/</hibernateSearchMigrationGuidesIndexUrl>
279279
<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
@@ -10,7 +10,7 @@
1010
:title-logo-image: image:hibernate_logo_a.png[align=left,pdfwidth=33%]
1111
:html-meta-description: Hibernate Search, full text search for your entities - Internals of Hibernate Search
1212
:html-meta-keywords: hibernate, search, hibernate search, full text, lucene, elasticsearch, opensearch
13-
:html-meta-canonical-link: https://docs.jboss.org/hibernate/stable/search/internals/html_single/
13+
:html-meta-canonical-link: https://docs.hibernate.org/stable/search/internals/html_single/
1414

1515
This section is intended for new Hibernate Search contributors looking for an introduction
1616
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
@@ -10,7 +10,7 @@
1010
:title-logo-image: image:hibernate_logo_a.png[align=left,pdfwidth=33%]
1111
:html-meta-description: Hibernate Search, full text search for your entities - Migration Guide
1212
:html-meta-keywords: hibernate, search, hibernate search, full text, lucene, elasticsearch, opensearch
13-
:html-meta-canonical-link: https://docs.jboss.org/hibernate/search/{hibernateSearchVersionShort}/migration/html_single/
13+
:html-meta-canonical-link: https://docs.hibernate.org/search/{hibernateSearchVersionShort}/migration/html_single/
1414

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

@@ -69,7 +69,7 @@ If your application uses Hibernate ORM 5.6::
6969
You need to migrate to Hibernate ORM 6.3 first
7070
before upgrading to this version of Hibernate Search;
7171
see https://hibernate.org/orm/documentation/migrate/[Hibernate ORM migration guides]
72-
and https://docs.jboss.org/hibernate/search/6.2/reference/en-US/html_single/#other-integrations-orm6[this guide for using Hibernate ORM 6.x with Hibernate Search 6.2].
72+
and https://docs.hibernate.org/search/6.2/reference/en-US/html_single/#other-integrations-orm6[this guide for using Hibernate ORM 6.x with Hibernate Search 6.2].
7373
+
7474
Then follow the instructions for "If your application uses Hibernate ORM 6.3" above.
7575

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

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

1414
:relfileprefix: ../../
1515
: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
@@ -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 with Hibernate Search in Hibernate ORM
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/orm/en-US/html_single/
14+
:html-meta-canonical-link: https://docs.hibernate.org/stable/search/getting-started/orm/en-US/html_single/
1515

1616
:relfileprefix: ../../
1717
: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
@@ -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 with Hibernate Search’s Standalone POJO Mapper
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/standalone/en-US/html_single/
14+
:html-meta-canonical-link: https://docs.hibernate.org/stable/search/getting-started/standalone/en-US/html_single/
1515

1616
:relfileprefix: ../../
1717
: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
@@ -20,6 +20,6 @@ Additionally, be aware that a lot of APIs have changed, some only because of a p
2020
others because of more fundamental changes
2121
(like moving away from using Lucene types in Hibernate Search APIs).
2222
For that reason, you are encouraged to migrate first to Hibernate Search 6.0
23-
using the https://docs.jboss.org/hibernate/search/6.0/migration/html_single/[6.0 migration guide],
23+
using the https://docs.hibernate.org/search/6.0/migration/html_single/[6.0 migration guide],
2424
and only then to later versions (which will be significantly easier).
2525
====

0 commit comments

Comments
 (0)