logback-gelf.
GELF Appender for logback. Use this appender to log messages to a graylog2 server via GELF messages..
Here is the list of declaration for logback-gelf. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>me.moocar</groupId> <artifactId>logback-gelf</artifactId> <version>0.10p1</version> </dependency>
If you think this Maven repository POM file listing for logback-gelf is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The logback-gelf-0.10p1 has 6 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Log | slf4j-api 1.6.6 The slf4j API | 94 |
Log | logback-classic 1.0.0 Logback: the reliable, generic, fast and flexible logging library for Java. | 65 |
JSON | gson 2.1 Google Gson library | 76 |
JUnit | junit 4.9 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 117 |
Inversion of Control | guava 14.0 Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more. Guava has two code dependencies - javax.annotation per the JSR-305 spec and javax.inject per the JSR-330 spec. | 58 |
The following plugins are used in the logback-gelf-0.10p1.jar
The following packages are defined in the logback-gelf-0.10p1.jar
me.moocar.logbackgelf me.moocar.logbackgelf.util
Here is the content of the POM file.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>me.moocar</groupId> <artifactId>logback-gelf</artifactId> <packaging>jar</packaging> <version>0.10p1</version> <name>logback-gelf</name> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <description>GELF Appender for logback. Use this appender to log messages to a graylog2 server via GELF messages.</description> <url>https://github.com/Moocar/logback-gelf</url> <inceptionYear>2011</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:Moocar/logback-gelf.git</connection> <developerConnection>scm:git:git@github.com:Moocar/logback-gelf.git</developerConnection> <url>git@github.com:Moocar/logback-gelf.git</url> </scm> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.6</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.9</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.groovy</groupId> <artifactId>groovy-all</artifactId> <version>2.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>14.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> <plugin> <!-- be sure to add github.global.userName and github.global.password to your profile properties in settings.xml --> <!-- run with mvn clean install assembly:single ghDownloads:upload --> <groupId>com.github.github</groupId> <artifactId>downloads-maven-plugin</artifactId> <version>0.4</version> <configuration> <description>${project.version} release of ${project.name}</description> <override>false</override> <includeAttached>true</includeAttached> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <instructions> <!-- packages to export --> <Export-Package>me.moocar.logbackgelf</Export-Package> <!-- attach to Logback bundle as fragment --> <Fragment-Host>ch.qos.logback.classic</Fragment-Host> </instructions> </configuration> </plugin> <!-- Build helper maven plugin sets the parsedVersion.osgiVersion property --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>set-osgi-version</id> <phase>verify</phase> <goals> <goal>parse-version</goal> </goals> </execution> </executions> </plugin> <!-- source maven plugin creates the source bundle and adds manifest --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <archive> <manifestEntries> <Bundle-ManifestVersion>2</Bundle-ManifestVersion> <Bundle-Name>${name}</Bundle-Name> <Bundle-SymbolicName>${groupId}.${artifactId}.source</Bundle-SymbolicName> <Bundle-Vendor>${organization.name}</Bundle-Vendor> <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version> <Eclipse-SourceBundle>${groupId}.${artifactId};version="${parsedVersion.osgiVersion}";roots:="."</Eclipse-SourceBundle> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>