组织ID: |
log4j |
项目ID: |
apache-log4j-extras |
版本: |
1.0 |
最后修改时间: |
2018-08-05 22:18:28 |
包类型: |
jar |
标题: |
Apache Extras Companion for log4j 1.2. |
描述: |
This companion provides additional appenders, filters and
other capabilities for log4j 1.2. Several of these were backported from
the abandoned log4j 1.3 development effort. |
相关URL: |
http://logging.apache.org:80/log4j/companions/extras |
大小: |
150.26KB |
|
Maven引入代码: |
<dependency>
<groupId>log4j</groupId>
<artifactId>apache-log4j-extras</artifactId>
<version>1.0</version>
</dependency>
|
Gradle引入代码: |
log4j:apache-log4j-extras:1.0
|
下载Jar包: |
|
POM文件内容: |
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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>log4j</groupId>
<artifactId>apache-log4j-extras</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>Apache Extras Companion for log4j 1.2.</name>
<description>This companion provides additional appenders, filters and
other capabilities for log4j 1.2. Several of these were backported from
the abandoned log4j 1.3 development effort.</description>
<url>http://logging.apache.org:80/log4j/companions/extras</url>
<issueManagement>
<system>Bugzilla</system>
<url>http://issues.apache.org/bugzilla/</url>
</issueManagement>
<ciManagement>
<system>Gump</system>
<url>http://vmgump.apache.org/gump/public/logging-log4j-extras/logging-log4j-extras/index.html</url>
</ciManagement>
<mailingLists>
<mailingList>
<name>log4j-user</name>
<subscribe>log4j-user-subscribe@logging.apache.org</subscribe>
<unsubscribe>log4j-user-unsubscribe@logging.apache.org</unsubscribe>
<post>log4j-user@logging.apache.org</post>
<archive>http://mail-archives.apache.org/mod_mbox/logging-log4j-user/</archive>
<otherArchives>
<otherArchive>http://marc.theaimsgroup.com/?l=log4j-user&r=1&w=2</otherArchive>
<otherArchive>http://dir.gmane.org/gmane.comp.jakarta.log4j.user</otherArchive>
</otherArchives>
</mailingList>
<mailingList>
<name>log4j-dev</name>
<subscribe>log4j-dev-subscribe@logging.apache.org</subscribe>
<unsubscribe>log4j-dev-unsubscribe@logging.apache.org</unsubscribe>
<post>log4j-dev@logging.apache.org</post>
<archive>http://mail-archives.apache.org/mod_mbox/logging-log4j-dev/</archive>
<otherArchives>
<otherArchive>http://marc.theaimsgroup.com/?l=log4j-dev&r=1&w=2</otherArchive>
<otherArchive>http://dir.gmane.org/gmane.comp.jakarta.log4j.devel</otherArchive>
</otherArchives>
</mailingList>
</mailingLists>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/logging/log4j/companions/extras/tags/v1_0_rc5</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/logging/log4j/companions/extras/tags/v1_0_rc5</developerConnection>
<url>http://svn.apache.org/viewcvs.cgi/logging/log4j/companions/extras/tags/v1_0_rc5</url>
</scm>
<organization>
<name>Apache Software Foundation</name>
<url>http://www.apache.org</url>
</organization>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<workingDirectory>target</workingDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.2</source>
<target>1.1</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestSections>
<manifestSection>
<name>org.apache.log4j</name>
<manifestEntries>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>Apache Software Foundation</Implementation-Vendor>
</manifestEntries>
</manifestSection>
</manifestSections>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>site</phase>
<id>untag-site</id>
<configuration>
<tasks>
<taskdef name="replaceregexp" classname="org.apache.tools.ant.taskdefs.optional.ReplaceRegExp" />
<replaceregexp file="target/site/source-repository.html" match="/tags/[^ ]*" replace="/trunk" flags="g" />
<replaceregexp match="-- Generated by (.*) on .*--" replace="-- Generated by \1 --" flags="g">
<fileset dir="target/site/apidocs" includes="**/*.html" />
</replaceregexp>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<phase>post-site</phase>
<id>post-site</id>
<configuration>
<tasks>
<ant target="post-site" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<phase>site-deploy</phase>
<id>site-deploy</id>
<configuration>
<tasks>
<ant target="site-deploy" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>ant</groupId>
<artifactId>ant-nodeps</artifactId>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>ant-contrib</groupId>
<artifactId>ant-contrib</artifactId>
<version>1.0b2</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/assembly/bin.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
<executions>
<execution>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
<goal>javadoc</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rat-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.9</version>
</dependency>
</dependencies>
<reporting>
<excludeDefaults>true</excludeDefaults>
<plugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>scm</report>
<report>dependencies</report>
<report>cim</report>
<report>issue-tracking</report>
<report>mailing-list</report>
<report>license</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jxr-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<!-- attempt to work-around MRELEASE-273, see bug 42099 for release build notes -->
<configuration>
<goals>package site-deploy assembly:attached deploy</goals>
</configuration>
</plugin>
<plugin>
<artifactId>maven-changes-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
<configuration>
<issueLinkTemplate>%URL%/show_bug.cgi?id=%ISSUE%</issueLinkTemplate>
</configuration>
</plugin>
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>logging.repo</id>
<url>scp://people.apache.org/www/people.apache.org/builds/logging/repo/</url>
</repository>
<site>
<id>logging.site</id>
<url>scp://localhost/${user.dir}/target/site-deploy</url>
</site>
</distributionManagement>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/LICENSE
org/apache/log4j/xml/default.xslt
org.apache.log4j.xml.UnrecognizedElementHandler.class
org.apache.log4j.xml.XSLTLayout.class
org/apache/log4j/extras/log4j.dtd
org.apache.log4j.extras.DOMConfigurator$ParseAction.class
org.apache.log4j.extras.DOMConfigurator$1.class
org.apache.log4j.extras.DOMConfigurator$2.class
org.apache.log4j.extras.DOMConfigurator$3.class
org.apache.log4j.extras.DOMConfigurator$4.class
org.apache.log4j.extras.DOMConfigurator$5.class
org.apache.log4j.extras.DOMConfigurator$XMLWatchdog.class
org.apache.log4j.extras.DOMConfigurator$Log4jEntityResolver.class
org.apache.log4j.extras.DOMConfigurator.class
org.apache.log4j.filter.LoggerMatchFilter.class
org.apache.log4j.filter.StringMatchFilter.class
org.apache.log4j.filter.LevelRangeFilter.class
org.apache.log4j.filter.TimeFilter.class
org.apache.log4j.filter.DenyAllFilter.class
org.apache.log4j.filter.LocationInfoFilter.class
org.apache.log4j.filter.AndFilter.class
org.apache.log4j.filter.LevelMatchFilter.class
org.apache.log4j.filter.ExpressionFilter.class
org.apache.log4j.rolling.RollingPolicy.class
org.apache.log4j.rolling.RolloverDescription.class
org.apache.log4j.rolling.helper.Action.class
org.apache.log4j.rolling.helper.ActionBase.class
org.apache.log4j.rolling.helper.CompositeAction.class
org.apache.log4j.rolling.helper.FileRenameAction.class
org.apache.log4j.rolling.helper.ZipCompressAction.class
org.apache.log4j.rolling.helper.GZCompressAction.class
org.apache.log4j.rolling.SizeBasedTriggeringPolicy.class
org.apache.log4j.rolling.TriggeringPolicy.class
org.apache.log4j.rolling.RolloverDescriptionImpl.class
org.apache.log4j.rolling.RollingPolicyBase.class
org.apache.log4j.rolling.RollingFileAppender$CountingOutputStream.class
org.apache.log4j.rolling.RollingFileAppender$DefaultErrorHandler.class
org.apache.log4j.rolling.RollingFileAppender.class
org.apache.log4j.rolling.FilterBasedTriggeringPolicy.class
org.apache.log4j.rolling.FixedWindowRollingPolicy.class
org.apache.log4j.rolling.TimeBasedRollingPolicy.class
org.apache.log4j.rule.AbstractRule.class
org.apache.log4j.rule.Rule.class
org.apache.log4j.rule.InFixToPostFix.class
org.apache.log4j.rule.NotRule.class
org.apache.log4j.rule.TimestampInequalityRule.class
org.apache.log4j.rule.LevelInequalityRule$LessThanRule.class
org.apache.log4j.rule.LevelInequalityRule$GreaterThanRule.class
org.apache.log4j.rule.LevelInequalityRule$GreaterThanEqualsRule.class
org.apache.log4j.rule.LevelInequalityRule$LessThanEqualsRule.class
org.apache.log4j.rule.LevelInequalityRule.class
org.apache.log4j.rule.TimestampEqualsRule.class
org.apache.log4j.rule.ColorRule.class
org.apache.log4j.rule.LikeRule.class
org.apache.log4j.rule.PartialTextMatchRule.class
org.apache.log4j.rule.AndRule.class
org.apache.log4j.rule.RuleFactory.class
org.apache.log4j.rule.ExpressionRule$PostFixExpressionCompiler.class
org.apache.log4j.rule.ExpressionRule.class
org.apache.log4j.rule.LevelEqualsRule.class
org.apache.log4j.rule.InequalityRule.class
org.apache.log4j.rule.OrRule.class
org.apache.log4j.rule.EqualsRule.class
org.apache.log4j.rule.ExistsRule.class
org.apache.log4j.rule.NotEqualsRule.class
org.apache.log4j.spi.LoggingEventFieldResolver.class
org.apache.log4j.pattern.NameAbbreviator$NOPAbbreviator.class
org.apache.log4j.pattern.NameAbbreviator$MaxElementAbbreviator.class
org.apache.log4j.pattern.NameAbbreviator$PatternAbbreviatorFragment.class
org.apache.log4j.pattern.NameAbbreviator$PatternAbbreviator.class
org.apache.log4j.pattern.NameAbbreviator.class
org.apache.log4j.pattern.PatternConverter.class
org.apache.log4j.pattern.LoggingEventPatternConverter.class
org.apache.log4j.pattern.ThrowableInformationPatternConverter.class
org.apache.log4j.pattern.LogEvent.class
org.apache.log4j.pattern.MessagePatternConverter.class
org.apache.log4j.pattern.PatternParser$ReadOnlyMap.class
org.apache.log4j.pattern.PatternParser.class
org.apache.log4j.pattern.FormattingInfo.class
org.apache.log4j.pattern.CachedDateFormat.class
org.apache.log4j.pattern.LineSeparatorPatternConverter.class
org.apache.log4j.pattern.FileLocationPatternConverter.class
org.apache.log4j.pattern.MethodLocationPatternConverter.class
org.apache.log4j.pattern.FileDatePatternConverter.class
org.apache.log4j.pattern.NamePatternConverter.class
org.apache.log4j.pattern.ClassNamePatternConverter.class
org.apache.log4j.pattern.LiteralPatternConverter.class
org.apache.log4j.pattern.BridgePatternParser.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
ant-nodeps-1.6.5.jar
/ant/ant-nodeps/1.6.5
查看ant-nodeps所有版本文件
ant-contrib-1.0b2.jar
/ant-contrib/ant-contrib/1.0b2
查看ant-contrib所有版本文件
|