Skip to content

spring-projects/spring-data-bom

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5e0ebe2 · Mar 14, 2025
Feb 11, 2025
Mar 14, 2025
Mar 14, 2025
Nov 7, 2024
May 18, 2020
Nov 13, 2024
May 18, 2020
Apr 19, 2021
May 18, 2020
May 18, 2020
May 18, 2020
Mar 14, 2025
Jan 31, 2024

Spring Data BOM icon?job=spring data bom%2Fmain&subject=Build

This repository contains the Spring Data BOM (Bill of Materials).

Code of Conduct

This project is governed by the Spring Code of Conduct. By participating, you are expected to uphold this code of conduct. Please report unacceptable behavior to spring-code-of-conduct@pivotal.io.

Maven

Usage in Maven

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.springframework.data</groupId>
      <artifactId>spring-data-bom</artifactId>
      <version>${calver.major.minor}</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>

<dependencies>
  <dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-commons</artifactId>
  </dependency>
</dependencies>

Gradle

Usage in Gradle

dependencies {
  implementation platform("org.springframework.data:spring-data-bom:${calver.major.minor}")

  implementation("org.springframework.data:spring-data-commons")
}

License

Spring Data Build is Open Source software released under the Apache 2.0 license.