Documentation fix for Maven BOM import instructions

This commit is contained in:
Jacques-Etienne Beaudet 2024-09-16 14:03:29 -04:00
parent 2f2dbbe2e6
commit 5fa8b81a2e
No known key found for this signature in database
1 changed files with 9 additions and 7 deletions

View File

@ -101,13 +101,15 @@ To apply the platform (BOM) in Maven
</dependency> </dependency>
<dependencyManagement> <dependencyManagement>
<dependency> <dependencies>
<groupId>org.hibernate.orm</groupId> <dependency>
<artifactId>hibernate-platform</artifactId> <groupId>org.hibernate.orm</groupId>
<version>{fullVersion}</version> <artifactId>hibernate-platform</artifactId>
<type>pom</type> <version>{fullVersion}</version>
<scope>import</scope> <type>pom</type>
</dependency> <scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement> </dependencyManagement>
---- ----