Event and Error Logging Framework

EELF Maven Plugins and Tools

Лицензия

Лицензия

Категории

Категории

Maven Компиляция и сборка
Группа

Группа

com.att.eelf
Идентификатор

Идентификатор

eelf-maven-plugin
Последняя версия

Последняя версия

2.0.0-oss
Дата

Дата

Тип

Тип

maven-plugin
Описание

Описание

Event and Error Logging Framework
EELF Maven Plugins and Tools
Ссылка на сайт

Ссылка на сайт

https://github.com/att/EELF/wiki
Система контроля версий

Система контроля версий

http://github.com/att/EELF/tree/master

Скачать eelf-maven-plugin

Как подключить последнюю версию

<plugin>
    <groupId>com.att.eelf</groupId>
    <artifactId>eelf-maven-plugin</artifactId>
    <version>2.0.0-oss</version>
</plugin>

Зависимости

compile (7)

Идентификатор библиотеки Тип Версия
org.apache.commons : commons-lang3 jar 3.0
commons-io : commons-io jar 2.4
org.apache.maven : maven-core jar 3.1.1
org.apache.maven : maven-compat jar 3.1.1
com.sun.jersey : jersey-client jar 1.17.1
org.codehaus.jackson : jackson-mapper-asl jar 1.9.9
org.codehaus.jackson : jackson-jaxrs jar 1.9.9

provided (2)

Идентификатор библиотеки Тип Версия
org.apache.maven : maven-artifact jar 3.1.1
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.2

test (2)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.11
org.apache.maven.plugin-testing : maven-plugin-testing-harness jar 3.1.0

Модули Проекта

Данный проект не имеет модулей.

#EVENT and ERROR LOGGING FRAMEWORK

##OVERVIEW

Event and Error Logging Framework aka EELF, builds on top of existing logging frameworks, adding the I18N support in a standard way,and also provides the ability to generate wiki documentation from the message definitions. The framework includes classes with numerous convenience methods to perform logging operations with ease.

    EELF API and Features


    • Pluggable Logging framework built on SLF4j
    • Message Logging with error codes 
    • Resource Management of resource bundles 
    • Load Resource Bundles
    • Format Message Resources
    • Exception Formatting
    • Wiki Content generation from the message definitions
    • Ability to capture exception hierarchy
    • Internationalization/Localization support

###REQUIREMENTS

Java 7 and above, Maven

##BUILD & RUN

Maven can be used to build

##CONFIGURATION

This project contains the main library.. Any application using EELF has to include eelf-core as the dependency in pom.xml.

    < dependency > 
    < groupId > </ groupId > 
    < artifactId > eelf-core</ artifactId > 
    < version >${eelf.version}</ version > 
    </ dependency >

This project contains the maven plugin to generate wiki page. The wiki page will contain the list of error codes along with its description and resolution. .

    < plugin > 
        < groupId >  </ groupId > 
        < artifactId >eelf-maven-plugin</ artifactId > 
        < version >${eelf.maven.plugin.version}</ version > 
        < executions > 
        < execution > 
        < phase >install</ phase > 
        < goals > 
        < goal >WikiMsgGenerator</ goal > 
        </ goals > 
        </ execution >  
      </ executions > 
      < dependencies > 
        <!-- We need to include the dependency of the project so that its include in classpath when running plugin --> 
        < dependency > 
        < groupId ></ groupId > 
        < artifactId > eelf-samples</ artifactId > 
        < version >${project.version}</ version > 
        </ dependency > 
      </ dependencies > 
      < configuration > < outputDirectory >target/messages</ outputDirectory > 
        < outputFile >messages.html</ outputFile > 
        < wiki > 
        < title >Messages and Codes</ title > 
     < page >APP Messages and Codes</ page > 
     < principal >user</ principal > 
     < credentials >password</ credentials > 
     < url ></ url > 
     </ wiki > 
     < resources > 
     < resource > 
     <!-- Provide enum class created for your application --> 
     < messageClass >com.att.eelf.sample.ApplicationMsgs</ messageClass > 
     < header ><![CDATA[<p> <ac:macro ac:name="toc"/> </p>
     <p>
     <ac:macro ac:name="anchor"> 
     <ac:default-parameter>Application Messages</ac:default-parameter> 
     </ac:macro> </p> <h2>Application Messages</h2>]]></ header > 
     </ resource > 
     </ resources > 
     </ configuration > 
     </ plugin >
com.att.eelf

AT&T Open Source

Версии библиотеки

Версия
2.0.0-oss
1.0.1-oss
1.0.0-oss
1.0.0
0.0.1