Skip to content

Commit

Permalink
HSEARCH-3364 Follow-up on HSEARCH-3168: use the non-deprecated Hibern…
Browse files Browse the repository at this point in the history
…ate ORM module name
  • Loading branch information
yrodiere committed Nov 22, 2018
1 parent d51ad55 commit 654275d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion documentation/src/main/asciidoc/configuration.asciidoc
Expand Up @@ -1544,7 +1544,7 @@ You just need to select it by setting the following property in your `persistenc
====
[source]
[subs="verbatim,attributes"]
jboss.as.jpa.providerModule=org.hibernate:{hibernateShortVersion}
jboss.as.jpa.providerModule=org.hibernate.orm:{hibernateShortVersion}
====

Then select the updated version of Hibernate Search by setting this other property:
Expand Down
Expand Up @@ -67,7 +67,7 @@ public static synchronized String getDependencyVersionHibernateSearch() {

public static synchronized String getHibernateORMModuleName() {
if ( hibernateOrmModuleName == null ) {
hibernateOrmModuleName = "org.hibernate:" + injectVariables( "${test.module-slot.org.hibernate}" );
hibernateOrmModuleName = "org.hibernate.orm:" + injectVariables( "${test.module-slot.org.hibernate}" );
}
return hibernateOrmModuleName;
}
Expand Down

0 comments on commit 654275d

Please sign in to comment.