Skip to content

Bill of Materials (Maven BOM format) for my "commons" libraries

License

Notifications You must be signed in to change notification settings

locke-chappel/oss-java-commons-bom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

OSS Commons Bill of Materials

This BOM artifact defines the current version of all OSS Commons projects so that dowstream projects can track a single artifact making upgrades easier.

The intended use case is for a parent POM to declare this BOM as a dependency under it's dependency management section so that the end project can simply declare which group/artifact is needed without having to pull in everything in the BOM.

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>io.github.locke-chappel.oss.commons</groupId>
      <artifactId>bom</artifactId>
      <version>${io.github.lc.oss.common.bom.version}</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>