Download logback-ext-spring-0.1.2.jar file

Introduction

You can download logback-ext-spring-0.1.2.jar in this page.

License

Apache License

Type List

logback-ext-spring-0.1.2.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.logback-extensions/logback-ext-spring/pom.properties
META-INF/maven/org.logback-extensions/logback-ext-spring/pom.xml
ch.qos.logback.ext.spring.ApplicationContextHolder.class
ch.qos.logback.ext.spring.DelegatingLogbackAppender.class
ch.qos.logback.ext.spring.EventCacheMode.class
ch.qos.logback.ext.spring.ILoggingEventCache.class
ch.qos.logback.ext.spring.LogbackConfigurer.class
ch.qos.logback.ext.spring.web.LogbackConfigListener.class
ch.qos.logback.ext.spring.web.LogbackConfigServlet.class
ch.qos.logback.ext.spring.web.WebLogbackConfigurer.class

Pom

logback-ext-spring-0.1.2.pom file content.

<!--

    Copyright (C) 2014 The logback-extensions developers (logback-user@qos.ch)

    Licensed 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">

  <parent>
    <groupId>org.logback-extensions</groupId>
    <artifactId>logback-ext-parent</artifactId>
    <version>0.1.2</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <artifactId>logback-ext-spring</artifactId>
  <name>Logback Extensions :: Spring</name>
  <packaging>jar</packaging>

  <properties>
    <spring.version>3.1.1.RELEASE</spring.version>
  </properties>

  <dependencies>
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>${spring.version}</version>
      <scope>provided</scope>
      <optional>true</optional>
      <exclusions>
        <exclusion>
          <groupId>commons-logging</groupId>
          <artifactId>commons-logging</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-web</artifactId>
      <version>${spring.version}</version>
      <scope>provided</scope>
      <optional>true</optional>
      <exclusions>
        <exclusion>
          <groupId>commons-logging</groupId>
          <artifactId>commons-logging</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.5</version>
      <scope>provided</scope>
      <optional>true</optional>
    </dependency>

  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <id>bundle-test-jar</id>
            <phase>package</phase>
            <goals>
              <goal>jar</goal>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

</project>

POM Entry

<dependency>
   <groupId>org.logback-extensions</groupId>
   <artifactId>logback-ext-spring</artifactId>
   <version>0.1.2</version>
</dependency>

Download

If you think the following logback-ext-spring-0.1.2.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download logback-ext-spring-0.1.2.jar file




PreviousNext

Related