Skip to content

Commit 8b92994

Browse files
committed
HV-1742 Upgrade to WildFly 18.0.0.Final
1 parent ce6c698 commit 8b92994

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modules/src/script/setupModules.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ bvModuleXml = new File( wildflyPatchedTargetDir, 'modules/system/layers/base/jav
2626
def bvArtifactName = 'jakarta.validation-api-' + project.properties['version.jakarta.validation-api'] + '.jar';
2727
println "[INFO] Using Jakarta Bean Validation version " + bvArtifactName;
2828
processFileInplace( bvModuleXml ) { text ->
29-
text.replaceAll( /validation-api.*jar/, bvArtifactName )
29+
text.replaceAll( /<resource-root path=".*validation-api.*jar/, '<resource-root path="' + bvArtifactName )
3030
}
3131

32-
deleteFiles( new FileNameFinder().getFileNames( wildflyPatchedTargetDir + '/modules/system/layers/base/javax/validation/api/main', 'validation-api-*.jar' ) )
32+
deleteFiles( new FileNameFinder().getFileNames( wildflyPatchedTargetDir + '/modules/system/layers/base/javax/validation/api/main', '*.jar' ) )
3333

3434
// HV
3535
hvModuleXml = new File( wildflyPatchedTargetDir, 'modules/system/layers/base/org/hibernate/validator/main/module.xml' )

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@
122122
<version.org.jboss.logging.jboss-logging-tools>2.1.0.Final</version.org.jboss.logging.jboss-logging-tools>
123123

124124
<!-- Currently supported version of WildFly -->
125-
<version.wildfly>17.0.1.Final</version.wildfly>
125+
<version.wildfly>18.0.0.Final</version.wildfly>
126126
<!-- Used to create a patch file for the second version of WildFly we support -->
127-
<version.wildfly.secondary>16.0.0.Final</version.wildfly.secondary>
127+
<version.wildfly.secondary>17.0.1.Final</version.wildfly.secondary>
128128
<!-- Version used to run the TCK in incontainer mode -->
129129
<version.wildfly.tck>${version.wildfly}</version.wildfly.tck>
130130

0 commit comments

Comments
 (0)