Wildfly Hibernate Maven

<dependencyManagement>
 <dependencies>
  <dependency>
   <groupId>org.wildfly.bom</groupId>
   <artifactId>wildfly-javaee7-with-tools</artifactId>
   <version>10.1.0.Final</version>
   <type>pom</type>
   <scope>import</scope>
  </dependency>
 </dependencies>
</dependencyManagement>

<dependency>
 <groupId>org.hibernate</groupId>
 <artifactId>hibernate-validator</artifactId>
 <scope>provided</scope>
 <exclusions>
 <exclusion>
  <groupId>org.slf4j</groupId>
  <artifactId>slf4j-api</artifactId>
 </exclusion>
</exclusions>
</dependency>
<dependencyManagement>
 <dependencies>
  <dependency>
   <groupId>org.wildfly.bom</groupId>
   <artifactId>wildfly-jakartaee8-with-tools</artifactId>
   <version>18.0.1.Final</version>
   <type>pom</type>
   <scope>import</scope>
  </dependency>
 </dependencies>
</dependencyManagement>