jetty.project/jetty-proxy/pom.xml

88 lines
2.7 KiB
XML
Raw Normal View History

<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">
2012-07-13 08:55:40 -04:00
<parent>
<groupId>org.eclipse.jetty</groupId>
2012-11-23 00:25:31 -05:00
<artifactId>jetty-project</artifactId>
2019-07-11 16:54:21 -04:00
<version>10.0.0-SNAPSHOT</version>
2012-07-13 08:55:40 -04:00
</parent>
2012-07-13 08:55:40 -04:00
<modelVersion>4.0.0</modelVersion>
<artifactId>jetty-proxy</artifactId>
<name>Jetty :: Proxy</name>
<description>Jetty Proxy</description>
2012-07-13 08:55:40 -04:00
<properties>
2012-11-23 00:25:31 -05:00
<bundle-symbolic-name>${project.groupId}.proxy</bundle-symbolic-name>
2012-07-13 08:55:40 -04:00
</properties>
2012-07-13 08:55:40 -04:00
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
2012-11-23 00:25:31 -05:00
<onlyAnalyze>org.eclipse.jetty.proxy.*</onlyAnalyze>
2012-07-13 08:55:40 -04:00
</configuration>
</plugin>
</plugins>
</build>
2012-07-13 08:55:40 -04:00
<dependencies>
Issue #4572 - Replace Jetty Logging with SLF4J * Introducing jetty-slf4j-impl * Make Jetty use org.slf4j * Removed most of org.eclipse.jetty.util.log classes * Left org.eclipse.jetty.util.log.Log and org.eclipse.jetty.util.log.Logger but as simple bridge classes that are deprecated * Migrated code using org.eclipse.jetty.util.log.StacklessLogging to org.eclipse.jetty.logging.StacklessLogging found in the jetty-slf4j-impl * Moved logging start modules from jetty-util to jetty-home * Simplified logging start modules * Updated code that was using StdErrLog directly * Updating module-info.java for org.slf4j * removing org.eclipse.jetty.util.log.class references * jetty-start supports manually declared default provider + and we use it to default "logging" to the "logging-jetty" provider * Cleaning up jetty-maven-plugin and IT testing for Logging * Using old slf4j for it testing * Updating compiler config to show Xlint:exports warnings * Updating console-capture and logging-noop * Adding slf4j bridge (capture) jetty modules * Updates to jetty logging module locations * Changing reference to slf4j dependent mod * Process requested enabled modules in topological order * Limiting inclusions in shaded jetty-start + Also adding note to jetty-util classes that are used by jetty-start * Default logging level on baseline logging config is INFO (not DEBUG) * Changing from system to server classes in logging * Updating other modules to use new logging names Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
2020-02-24 14:20:51 -05:00
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
2012-07-13 08:55:40 -04:00
<dependency>
<groupId>org.eclipse.jetty.toolchain</groupId>
<artifactId>jetty-servlet-api</artifactId>
<scope>provided</scope>
2012-07-13 08:55:40 -04:00
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
2012-11-23 00:25:31 -05:00
<artifactId>jetty-servlet</artifactId>
2012-07-13 08:55:40 -04:00
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<version>${project.version}</version>
</dependency>
2012-07-13 08:55:40 -04:00
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-alpn-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
2012-07-13 08:55:40 -04:00
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util-ajax</artifactId>
2012-07-13 08:55:40 -04:00
<version>${project.version}</version>
<scope>test</scope>
2012-07-13 08:55:40 -04:00
</dependency>
<dependency>
<groupId>org.eclipse.jetty.tests</groupId>
<artifactId>jetty-http-tools</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-slf4j-impl</artifactId>
</dependency>
2012-07-13 08:55:40 -04:00
<dependency>
<groupId>org.eclipse.jetty.toolchain</groupId>
<artifactId>jetty-test-helper</artifactId>
<scope>test</scope>
2012-07-13 08:55:40 -04:00
</dependency>
</dependencies>
</project>