| Categories | CategoriesSpring Boot Container Microservices Auto Application Layer Libs Code Generators config Configuration | 
|---|---|
| GroupId | GroupIdorg.springframework.boot | 
| ArtifactId | ArtifactIdspring-boot-autoconfigure | 
| Version | Version1.4.4.RELEASE | 
| Type | Typejar | 
<!-- https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-autoconfigure/ -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-autoconfigure</artifactId>
    <version>1.4.4.RELEASE</version>
</dependency>// https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-autoconfigure/
implementation 'org.springframework.boot:spring-boot-autoconfigure:1.4.4.RELEASE'// https://jarcasting.com/artifacts/org.springframework.boot/spring-boot-autoconfigure/
implementation ("org.springframework.boot:spring-boot-autoconfigure:1.4.4.RELEASE")'org.springframework.boot:spring-boot-autoconfigure:jar:1.4.4.RELEASE'<dependency org="org.springframework.boot" name="spring-boot-autoconfigure" rev="1.4.4.RELEASE">
  <artifact name="spring-boot-autoconfigure" type="jar" />
</dependency>@Grapes(
@Grab(group='org.springframework.boot', module='spring-boot-autoconfigure', version='1.4.4.RELEASE')
)libraryDependencies += "org.springframework.boot" % "spring-boot-autoconfigure" % "1.4.4.RELEASE"[org.springframework.boot/spring-boot-autoconfigure "1.4.4.RELEASE"]