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