Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: BOM

...

To use a BOM in your project, include  include the following code snippet as the very first dependency in the dependency management section of the parent poms and adjust the version number accordinglypoms and adjust the version number accordingly (the number is in sync with the bundle version):

Code Block
languagexml
<dependencyManagement>
 <dependencies>
  <dependency>
   <groupId>info.magnolia.boms</groupId>
   <artifactId>magnolia-external-dependencies</artifactId>
   <version>5.6</version>
   <type>pom</type>
   <scope>import</scope>
  </dependency>
 </dependencies>
</dependencyManagement>

...