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