| Categories | 
                CategoriesSpring Boot Container Microservices | 
        
|---|---|
| GroupId | GroupIdorg.springframework.boot | 
    
| ArtifactId | ArtifactIdspring-boot-starter-cache | 
    
| Version | Version2.0.5.RELEASE | 
        
| Type | Typejar | 
    
<!-- https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-starter-cache/ -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-cache</artifactId>
    <version>2.0.5.RELEASE</version>
</dependency>
                // https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-starter-cache/
implementation 'org.springframework.boot:spring-boot-starter-cache:2.0.5.RELEASE'
                // https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-starter-cache/
implementation ("org.springframework.boot:spring-boot-starter-cache:2.0.5.RELEASE")
                'org.springframework.boot:spring-boot-starter-cache:jar:2.0.5.RELEASE'
                <dependency org="org.springframework.boot" name="spring-boot-starter-cache" rev="2.0.5.RELEASE">
  <artifact name="spring-boot-starter-cache" type="jar" />
</dependency>
                @Grapes(
@Grab(group='org.springframework.boot', module='spring-boot-starter-cache', version='2.0.5.RELEASE')
)
                libraryDependencies += "org.springframework.boot" % "spring-boot-starter-cache" % "2.0.5.RELEASE"
                [org.springframework.boot/spring-boot-starter-cache "2.0.5.RELEASE"]