Maven Log Configurer

Maven extension to configure the logging from the project properties

License

License

Categories

Categories

Maven Build Tools config Application Layer Libs Configuration
GroupId

GroupId

com.github.rmannibucau
ArtifactId

ArtifactId

maven-log-configurer-extension
Last Version

Last Version

1.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

Maven Log Configurer
Maven extension to configure the logging from the project properties
Project URL

Project URL

https://github.com/rmannibucau/maven-log-configurer-extension
Source Code Management

Source Code Management

https://github.com/rmannibucau/maven-log-configurer-extension

Download maven-log-configurer-extension

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.rmannibucau/maven-log-configurer-extension/ -->
<dependency>
    <groupId>com.github.rmannibucau</groupId>
    <artifactId>maven-log-configurer-extension</artifactId>
    <version>1.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.rmannibucau/maven-log-configurer-extension/
implementation 'com.github.rmannibucau:maven-log-configurer-extension:1.0.1'
// https://jarcasting.com/artifacts/com.github.rmannibucau/maven-log-configurer-extension/
implementation ("com.github.rmannibucau:maven-log-configurer-extension:1.0.1")
'com.github.rmannibucau:maven-log-configurer-extension:jar:1.0.1'
<dependency org="com.github.rmannibucau" name="maven-log-configurer-extension" rev="1.0.1">
  <artifact name="maven-log-configurer-extension" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.rmannibucau', module='maven-log-configurer-extension', version='1.0.1')
)
libraryDependencies += "com.github.rmannibucau" % "maven-log-configurer-extension" % "1.0.1"
[com.github.rmannibucau/maven-log-configurer-extension "1.0.1"]

Dependencies

provided (2)

Group / Artifact Type Version
org.apache.maven : maven-core jar 3.5.0
org.apache.maven : maven-slf4j-provider jar 3.5.0

Project Modules

There are no modules declared in this project.

Maven Project Log Configurer

Gives the ability to configure the maven default logging from the project through properties.

<properties>
  <org.slf4j.simpleLogger.showThreadName>true</org.slf4j.simpleLogger.showThreadName>
  <org.slf4j.simpleLogger.showDateTime>true</org.slf4j.simpleLogger.showDateTime>
  <org.slf4j.simpleLogger.dateTimeFormat>HH:mm:ss</org.slf4j.simpleLogger.dateTimeFormat>
</properties>

<!-- in build section -->
<extensions>
  <extension>
    <groupId>com.github.rmannibucau</groupId>
    <artifactId>maven-log-configurer-extension</artifactId>
    <version>${configurer.version}</version>
  </extension>
</extensions>

Versions

Version
1.0.1
1.0.0