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>
<dependencyManagement>
<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-platform</artifactId>
<version>{fullVersion}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependencies>
<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-platform</artifactId>
<version>{fullVersion}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
----