Bill of materials
- ../flow Testing framework
This pom-only project offers a mechanism to coordinate the versions of the other flow artifacts that you consume.
Import the bom into the /project/dependencyManagement
section of your pom file:
<project>
...
<dependencyManagement>
<dependencies>
<dependency>
<!-- controls flow artifact versions -->
<groupId>com.mastercard.test.flow</groupId>
<artifactId>bom</artifactId>
<version>x.y.x</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
...
<project>
The latest release version is .
The versions of other flow artifacts in your /project/dependencies
section will then automatically match that of the bom:
<project>
...
<dependencies>
<dependency>
<!-- flow construction. Version controlled by bom import -->
<groupId>com.mastercard.test.flow</groupId>
<artifactId>builder</artifactId>
</dependency>
<dependency>
<!-- flow grouping. Version controlled by bom import -->
<groupId>com.mastercard.test.flow</groupId>
<artifactId>group</artifactId>
</dependency>
<dependency>
<!-- JSON messages. Version controlled by bom import -->
<groupId>com.mastercard.test.flow</groupId>
<artifactId>message-json</artifactId>
</dependency>
</dependencies>
...
<project>
At some point you'll find yourself having to track down the source of a dependency version, a task that is complicated by the use of bom imports.
Running mvn help:effective-pom -Dverbose=true
will be instructive in such cases.