You can download pax-logging-api-1.6.8.jar in this page.
Apache Open Source
pax-logging-api-1.6.8.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.ops4j.pax.logging/pax-logging-api/pom.properties META-INF/maven/org.ops4j.pax.logging/pax-logging-api/pom.xml org.apache.avalon.framework.logger.AbstractLogEnabled.class org.apache.avalon.framework.logger.LogEnabled.class org.apache.avalon.framework.logger.Loggable.class org.apache.avalon.framework.logger.Logger.class org.apache.commons.logging.Log.class org.apache.commons.logging.LogConfigurationException.class org.apache.commons.logging.LogFactory.class org.apache.commons.logging.impl.NoOpLog.class org.apache.commons.logging.internal.JclLogger.class org.apache.juli.logging.Log.class org.apache.juli.logging.LogConfigurationException.class org.apache.juli.logging.LogFactory.class org.apache.juli.logging.internal.JuliLogger.class org.apache.log4j.Category.class org.apache.log4j.Level.class org.apache.log4j.Logger.class org.apache.log4j.MDC.class org.apache.log4j.NDC.class org.apache.log4j.Priority.class org.apache.log4j.PropertyConfigurator.class org.apache.log4j.helpers.ThreadLocalMap.class org.apache.log4j.internal.MessageFormatter.class org.apache.log4j.spi.Configurator.class org.apache.log4j.spi.LoggerFactory.class org.apache.log4j.xml.DOMConfigurator.class org.knopflerfish.service.log.LogConfig.class org.knopflerfish.service.log.LogRef.class org.knopflerfish.service.log.LogService.class org.knopflerfish.service.log.LogUtil.class org.ops4j.pax.logging.EventAdminPoster.class org.ops4j.pax.logging.FqcnIgnoringPaxLogger.class org.ops4j.pax.logging.OSGIPaxLoggingManager.class org.ops4j.pax.logging.PaxContext.class org.ops4j.pax.logging.PaxLogger.class org.ops4j.pax.logging.PaxLoggingManager.class org.ops4j.pax.logging.PaxLoggingService.class org.ops4j.pax.logging.avalon.AvalonLogFactory.class org.ops4j.pax.logging.avalon.AvalonLogger.class org.ops4j.pax.logging.internal.Activator.class org.ops4j.pax.logging.internal.BufferingLog.class org.ops4j.pax.logging.internal.BundleHelper.class org.ops4j.pax.logging.internal.DefaultServiceLog.class org.ops4j.pax.logging.internal.EventAdminTracker.class org.ops4j.pax.logging.internal.FallbackLogFactory.class org.ops4j.pax.logging.internal.TrackingLogger.class org.ops4j.pax.logging.slf4j.Slf4jLogger.class org.ops4j.pax.logging.slf4j.Slf4jLoggerFactory.class org.ops4j.pax.logging.slf4j.Slf4jMDCAdapter.class org.osgi.service.log.LogEntry.class org.osgi.service.log.LogListener.class org.osgi.service.log.LogReaderService.class org.osgi.service.log.LogService.class org.slf4j.ILoggerFactory.class org.slf4j.IMarkerFactory.class org.slf4j.Logger.class org.slf4j.LoggerFactory.class org.slf4j.MDC.class org.slf4j.Marker.class org.slf4j.MarkerFactory.class org.slf4j.helpers.BasicMDCAdapter.class org.slf4j.helpers.BasicMarker.class org.slf4j.helpers.BasicMarkerFactory.class org.slf4j.helpers.FormattingTuple.class org.slf4j.helpers.MarkerIgnoringBase.class org.slf4j.helpers.MessageFormatter.class org.slf4j.helpers.NOPLogger.class org.slf4j.helpers.NOPLoggerFactory.class org.slf4j.helpers.NOPMDCAdapter.class org.slf4j.helpers.NOPMakerAdapter.class org.slf4j.helpers.NamedLoggerBase.class org.slf4j.helpers.SubstituteLoggerFactory.class org.slf4j.helpers.Util.class org.slf4j.impl.StaticLoggerBinder.class org.slf4j.impl.StaticMDCBinder.class org.slf4j.impl.StaticMarkerBinder.class org.slf4j.spi.LocationAwareLogger.class org.slf4j.spi.LoggerFactoryBinder.class org.slf4j.spi.MDCAdapter.class org.slf4j.spi.MarkerFactoryBinder.class org/osgi/service/log/package.html org/osgi/service/log/packageinfo
pax-logging-api-1.6.8.pom file content.
<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> <parent> <groupId>org.ops4j.pax</groupId> <artifactId>logging</artifactId> <version>1.6.8</version> </parent> <groupId>org.ops4j.pax.logging</groupId> <artifactId>pax-logging-api</artifactId> <packaging>bundle</packaging> <name>OPS4J Pax Logging - API</name> <description> The Pax Logging API Library is to allow for the Pax Logging Service to be reloaded without stopping the many dependent bundles. It also contains the OSGi Log Service API and the Knopflerfish Log API. </description> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> </plugin> <plugin> <groupId>org.ops4j</groupId> <artifactId>maven-pax-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack</id> <phase>generate-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>avalon-framework</groupId> <artifactId>avalon-framework-api</artifactId> </artifactItem> </artifactItems> <outputDirectory> ${project.build.directory}/classes </outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>process-classes</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>jmock</groupId> <artifactId>jmock</artifactId> </dependency> <dependency> <groupId>avalon-framework</groupId> <artifactId>avalon-framework-api</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>
<dependency> <groupId>org.ops4j.pax.logging</groupId> <artifactId>pax-logging-api</artifactId> <version>1.6.8</version> </dependency>
If you think the following pax-logging-api-1.6.8.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download pax-logging-api-1.6.8.jar file