Fix Jakarta test failures

This commit is contained in:
Andrea Boriero 2021-06-16 09:57:42 +02:00
parent e4120234d3
commit 3172d52deb
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ task copyBundleResources (type: Copy) {
// There are persistence.xml files referencing jar files through their absolute path so we // There are persistence.xml files referencing jar files through their absolute path so we
// have to replace 'hibernate-core/hibernate-core' in the path with 'hibernate-core/hibernate-core-jakarta' // have to replace 'hibernate-core/hibernate-core' in the path with 'hibernate-core/hibernate-core-jakarta'
filter { line -> filter { line ->
line.replaceAll( 'hibernate-core/', 'hibernate-core-jakarta/' ) line.replaceAll( 'hibernate-core/hibernate-core', 'hibernate-core/hibernate-core-jakarta' )
} }
doFirst { doFirst {
ext.bundlesTargetDir.mkdirs() ext.bundlesTargetDir.mkdirs()