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