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