| Categories | 
                CategoriesSpring Boot Container Microservices Data | 
        
|---|---|
| GroupId | GroupIdorg.springframework.boot | 
    
| ArtifactId | ArtifactIdspring-boot-starter-data-jpa | 
    
| Version | Version1.1.3.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.1.3.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.1.3.RELEASE'
                // https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-starter-data-jpa/
implementation ("org.springframework.boot:spring-boot-starter-data-jpa:1.1.3.RELEASE")
                'org.springframework.boot:spring-boot-starter-data-jpa:jar:1.1.3.RELEASE'
                <dependency org="org.springframework.boot" name="spring-boot-starter-data-jpa" rev="1.1.3.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.1.3.RELEASE')
)
                libraryDependencies += "org.springframework.boot" % "spring-boot-starter-data-jpa" % "1.1.3.RELEASE"
                [org.springframework.boot/spring-boot-starter-data-jpa "1.1.3.RELEASE"]