jetty-webapp-logging
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-webapp-logging</artifactId> <version>8.1.5.v20120716</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- // ======================================================================== // Copyright (c) Webtide LLC // // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 // and Apache License v2.0 which accompanies this distribution. // // The Eclipse Public License is available at // http://www.eclipse.org/legal/epl-v10.html // // The Apache License v2.0 is available at // http://www.apache.org/licenses/LICENSE-2.0.txt // // You may elect to redistribute this code under either of these licenses. // ======================================================================== --> <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.mortbay.jetty</groupId> <artifactId>jetty-integration-project</artifactId> <version>8.1.5.v20120716</version> </parent> <artifactId>jetty-webapp-logging</artifactId> <name>Jetty :: Centralized WebApp Logging</name> <packaging>jar</packaging> <licenses> <license> <name>Apache License Version 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> <license> <name>Eclipse Public License</name> <url>http://www.eclipse.org/legal/epl-v10.html</url> </license> </licenses> <properties> <slf4j-version>1.6.1</slf4j-version> <jetty-test-wars-version>9.0.0.v20120203</jetty-test-wars-version> <test-wars-dir>${project.build.directory}/test-wars</test-wars-dir> <test-configs-dir>${project.build.directory}/test-configs</test-configs-dir> <test-libs-dir>${project.build.directory}/test-libs</test-libs-dir> <test-distro-dir>${project.build.directory}/test-dist</test-distro-dir> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.7.2</version> <configuration> <forkMode>always</forkMode> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.1</version> <executions> <!-- Copy LIB dependencies into place that JettyDistro can use them --> <execution> <id>test-lib-logback-copy</id> <phase>process-test-resources</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <includeGroupIds>org.mortbay.jetty</includeGroupIds> <includeArtifactIds>jetty-logback</includeArtifactIds> <includeTypes>jar</includeTypes> <outputDirectory>${test-libs-dir}</outputDirectory> <overWriteIfNewer>true</overWriteIfNewer> <stripVersion>true</stripVersion> </configuration> </execution> <execution> <id>test-lib-slf4j-copy</id> <phase>process-test-resources</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <includeGroupIds>org.slf4j,ch.qos.logback</includeGroupIds> <includeTypes>jar</includeTypes> <outputDirectory>${test-libs-dir}</outputDirectory> <overWriteIfNewer>true</overWriteIfNewer> <stripVersion>true</stripVersion> </configuration> </execution> <!-- Copy WAR dependencies into place that JettyDistro can use them --> <execution> <id>test-war-copy</id> <phase>process-test-resources</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-commons_logging_1.0.3</artifactId> <version>${jetty-test-wars-version}</version> <type>war</type> <outputDirectory>${test-wars-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-commons_logging_1.1</artifactId> <version>${jetty-test-wars-version}</version> <type>war</type> <outputDirectory>${test-wars-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-java_util_logging</artifactId> <version>${jetty-test-wars-version}</version> <type>war</type> <outputDirectory>${test-wars-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-log4j_1.1.3</artifactId> <version>${jetty-test-wars-version}</version> <type>war</type> <outputDirectory>${test-wars-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-log4j_1.2.15</artifactId> <version>${jetty-test-wars-version}</version> <type>war</type> <outputDirectory>${test-wars-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-slf4j_1.2</artifactId> <version>${jetty-test-wars-version}</version> <type>war</type> <outputDirectory>${test-wars-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-slf4j_1.5.6</artifactId> <version>${jetty-test-wars-version}</version> <type>war</type> <outputDirectory>${test-wars-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-slf4j_1.6.1</artifactId> <version>${jetty-test-wars-version}</version> <type>war</type> <outputDirectory>${test-wars-dir}</outputDirectory> </artifactItem> </artifactItems> <overWriteIfNewer>true</overWriteIfNewer> <overWrite>true</overWrite> <stripVersion>true</stripVersion> </configuration> </execution> <!-- Copy "config" Classifiers into place that JettyDistro can use them --> <execution> <id>test-config-copy</id> <phase>process-test-resources</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-logback</artifactId> <version>${project.version}</version> <classifier>config</classifier> <type>jar</type> <outputDirectory>${test-configs-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-commons_logging_1.0.3</artifactId> <version>${jetty-test-wars-version}</version> <classifier>config</classifier> <type>jar</type> <outputDirectory>${test-configs-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-commons_logging_1.1</artifactId> <version>${jetty-test-wars-version}</version> <classifier>config</classifier> <type>jar</type> <outputDirectory>${test-configs-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-java_util_logging</artifactId> <version>${jetty-test-wars-version}</version> <classifier>config</classifier> <type>jar</type> <outputDirectory>${test-configs-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-log4j_1.1.3</artifactId> <version>${jetty-test-wars-version}</version> <classifier>config</classifier> <type>jar</type> <outputDirectory>${test-configs-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-log4j_1.2.15</artifactId> <version>${jetty-test-wars-version}</version> <classifier>config</classifier> <type>jar</type> <outputDirectory>${test-configs-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-slf4j_1.2</artifactId> <version>${jetty-test-wars-version}</version> <classifier>config</classifier> <type>jar</type> <outputDirectory>${test-configs-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-slf4j_1.5.6</artifactId> <version>${jetty-test-wars-version}</version> <classifier>config</classifier> <type>jar</type> <outputDirectory>${test-configs-dir}</outputDirectory> </artifactItem> <artifactItem> <groupId>org.mortbay.jetty.testwars</groupId> <artifactId>test-war-slf4j_1.6.1</artifactId> <version>${jetty-test-wars-version}</version> <classifier>config</classifier> <type>jar</type> <outputDirectory>${test-configs-dir}</outputDirectory> </artifactItem> </artifactItems> <overWriteIfNewer>true</overWriteIfNewer> <overWrite>true</overWrite> <stripVersion>true</stripVersion> </configuration> </execution> <!-- Extract Jetty DISTRIBUTION into place that JettyDistro can use it --> <execution> <id>unpack-test-dist</id> <phase>process-test-resources</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-distribution</artifactId> <version>${jetty-version}</version> <type>zip</type> <overWrite>true</overWrite> </artifactItem> </artifactItems> <outputAbsoluteArtifactFilename>true</outputAbsoluteArtifactFilename> <outputDirectory>${test-distro-dir}</outputDirectory> <overWriteSnapshots>true</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>package-config</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assemblies/config.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j-version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-webapp</artifactId> <version>${jetty-version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-deploy</artifactId> <version>${jetty-version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${slf4j-version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> <version>${slf4j-version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> <version>${slf4j-version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jetty-logback</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.jetty.toolchain</groupId> <artifactId>jetty-test-helper</artifactId> <version>${jetty-test-helper-version}</version> <scope>test</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.3.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.4</version> </plugin> </plugins> </reporting> </project>