| Categories | 
                CategoriesData | 
        
|---|---|
| GroupId | GroupIdorg.springframework.data | 
    
| ArtifactId | ArtifactIdspring-data-commons | 
    
| Version | Version2.2.5.RELEASE | 
        
| Type | Typejar | 
    
<!-- https://jarcasting.com/artifacts/org.springframework.data/spring-data-commons/ -->
<dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-commons</artifactId>
    <version>2.2.5.RELEASE</version>
</dependency>
                // https://jarcasting.com/artifacts/org.springframework.data/spring-data-commons/
implementation 'org.springframework.data:spring-data-commons:2.2.5.RELEASE'
                // https://jarcasting.com/artifacts/org.springframework.data/spring-data-commons/
implementation ("org.springframework.data:spring-data-commons:2.2.5.RELEASE")
                'org.springframework.data:spring-data-commons:jar:2.2.5.RELEASE'
                <dependency org="org.springframework.data" name="spring-data-commons" rev="2.2.5.RELEASE">
  <artifact name="spring-data-commons" type="jar" />
</dependency>
                @Grapes(
@Grab(group='org.springframework.data', module='spring-data-commons', version='2.2.5.RELEASE')
)
                libraryDependencies += "org.springframework.data" % "spring-data-commons" % "2.2.5.RELEASE"
                [org.springframework.data/spring-data-commons "2.2.5.RELEASE"]