We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3cb133 commit 5273a96Copy full SHA for 5273a96
1 file changed
system/core/util/Util.cfc
@@ -491,6 +491,11 @@ component {
491
* Get the Hibernate version string from Hibernate or Hibernate bundle version
492
*/
493
public string function getHibernateVersion(){
494
+ // BoxLang Detection
495
+ if ( server.keyExists( "boxlang" ) ) {
496
+ return ORMGetHibernateVersion();
497
+ }
498
+
499
var version = createObject( "java", "org.hibernate.Version" );
500
501
if ( version.getVersionString() != "[WORKING]" ) {
0 commit comments