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