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