JBoss Logging Log4j.
JBoss Logging Log4j Implementation.
Here is the list of declaration for jboss-logging-log4j. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-log4j</artifactId> <version>2.0.5.GA</version> </dependency>
If you think this Maven repository POM file listing for jboss-logging-log4j is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The jboss-logging-log4j-2.0.5.GA has 3 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 | jboss-logging-spi 2.0.5.GA The JBoss Logging Framework Programming Interface | 40 |
JBoss | jboss-common-core 2.2.5.GA JBoss Common Core Utility classes | 5 |
The following table lists the most popular artifacts which are depending on jboss-logging-log4j-2.0.5.GA. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JBoss | jboss-test 1.1.0.GA Common test support classes | 7 |
The following plugins are used in the jboss-logging-log4j-2.0.5.GA.jar
The following packages are defined in the jboss-logging-log4j-2.0.5.GA.jar
org.jboss.logging org.jboss.logging.appender org.jboss.logging.filter org.jboss.logging.layout org.jboss.logging.log4j org.jboss.logging.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"> <parent> <groupId>org.jboss</groupId> <artifactId>jboss-parent</artifactId> <version>3</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-log4j</artifactId> <version>2.0.5.GA</version> <packaging>jar</packaging> <name>JBoss Logging Log4j</name> <url>http://www.jboss.org</url> <description>JBoss Logging Log4j Implementation</description> <scm> <connection>scm:svn:https://svn.jboss.org/repos/common/common-logging-log4j/tags/2.0.5.GA</connection> </scm> <build> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <!-- The tagBase property is needed during the release process so that the maven release plugin will create the release tag in the appropriate location. --> <tagBase>https://svn.jboss.org/repos/common/common-logging-log4j/tags</tagBase> </configuration> </plugin> <plugin> <groupId>jboss.maven-plugins</groupId> <artifactId>jboss-deploy-maven-plugin</artifactId> </plugin> </plugins> </build> <repositories> <repository> <id>repository.jboss.org</id> <name>JBoss Repository</name> <layout>default</layout> <url>http://repository.jboss.org/maven2/</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>snapshots.jboss.org</id> <name>JBoss Snapshot Repository</name> <layout>default</layout> <url>http://snapshots.jboss.org/maven2/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <dependencies> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging-spi</artifactId> <version>2.0.5.GA</version> </dependency> <dependency> <groupId>org.jboss</groupId> <artifactId>jboss-common-core</artifactId> <version>2.2.5.GA</version> <optional>true</optional> <!-- For TCLFilter using org.jboss.util.collection.WeakSet --> </dependency> <dependency> <groupId>apache-log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.14</version> </dependency> </dependencies> </project>