| Categories | CategoriesSpring Boot Container Microservices | 
|---|---|
| GroupId | GroupIdorg.springframework.boot | 
| ArtifactId | ArtifactIdspring-boot | 
| Version | Version1.4.0.RELEASE | 
| Type | Typejar | 
| Filename | Size | 
|---|---|
| spring-boot-1.4.0.RELEASE.pom | |
| spring-boot-1.4.0.RELEASE.jar | 631 KB | 
| spring-boot-1.4.0.RELEASE-sources.jar | 468 KB | 
| spring-boot-1.4.0.RELEASE-javadoc.jar | 1 MB | 
| Browse | 
<!-- https://jarcasting.com/artifacts/org.springframework.boot/spring-boot/ -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot</artifactId>
    <version>1.4.0.RELEASE</version>
</dependency>// https://jarcasting.com/artifacts/org.springframework.boot/spring-boot/
implementation 'org.springframework.boot:spring-boot:1.4.0.RELEASE'// https://jarcasting.com/artifacts/org.springframework.boot/spring-boot/
implementation ("org.springframework.boot:spring-boot:1.4.0.RELEASE")'org.springframework.boot:spring-boot:jar:1.4.0.RELEASE'<dependency org="org.springframework.boot" name="spring-boot" rev="1.4.0.RELEASE">
  <artifact name="spring-boot" type="jar" />
</dependency>@Grapes(
@Grab(group='org.springframework.boot', module='spring-boot', version='1.4.0.RELEASE')
)libraryDependencies += "org.springframework.boot" % "spring-boot" % "1.4.0.RELEASE"[org.springframework.boot/spring-boot "1.4.0.RELEASE"]