jetty-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wildfly.security.elytron-web</groupId> <artifactId>jetty-server</artifactId> <version>1.0.0.Beta1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ JBoss, Home of Professional Open Source. ~ Copyright 2018 Red Hat, Inc., and individual contributors ~ as indicated by the @author tags. ~ ~ 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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jboss</groupId> <artifactId>jboss-parent</artifactId> <version>25</version> </parent> <groupId>org.wildfly.security.elytron-web</groupId> <artifactId>jetty-server</artifactId> <version>1.0.0.Beta1</version> <packaging>jar</packaging> <name>WildFly Elytron Web - Jetty Integration</name> <description>Integration project for integrating Elytron based HTTP authentication with Jetty.</description> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <properties> <version.org.wildfly.security.elytron>1.6.0.Final</version.org.wildfly.security.elytron> <version.org.apache.httpcomponents.httpclient>4.5.2</version.org.apache.httpcomponents.httpclient> <version.org.apache.httpcomponents.httpcore>4.4.4</version.org.apache.httpcomponents.httpcore> <version.org.jboss.logging>3.3.1.Final</version.org.jboss.logging> <version.org.jboss.logmanager>2.0.6.Final</version.org.jboss.logmanager> <version.org.jboss.logmanager.log4j-jboss>1.1.3.Final</version.org.jboss.logmanager.log4j-jboss> <version.junit.junit>4.11</version.junit.junit> <version.org.wildfly.checkstyle-config>1.0.6.Final</version.org.wildfly.checkstyle-config> <version.com.puppycrawl.tools.checkstyle>6.3</version.com.puppycrawl.tools.checkstyle> <version.org.eclipse.jetty.jetty-server>9.4.11.v20180605</version.org.eclipse.jetty.jetty-server> <test.level>INFO</test.level> <!-- Checkstyle configuration --> <linkXRef>false</linkXRef> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile> </properties> <dependencies> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>${version.org.eclipse.jetty.jetty-server}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <version>${version.org.eclipse.jetty.jetty-server}</version> </dependency> <dependency> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> <version>${version.org.jboss.logging}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.wildfly.security</groupId> <artifactId>wildfly-elytron</artifactId> <version>${version.org.wildfly.security.elytron}</version> <scope>provided</scope> </dependency> <!-- Test Scope Only --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${version.junit.junit}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>${version.org.apache.httpcomponents.httpclient}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>${version.org.apache.httpcomponents.httpcore}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-webapp</artifactId> <version>${version.org.eclipse.jetty.jetty-server}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>jboss-logmanager</artifactId> <version>${version.org.jboss.logmanager}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.logmanager</groupId> <artifactId>log4j-jboss-logmanager</artifactId> <version>${version.org.jboss.logmanager.log4j-jboss}</version> <scope>test</scope> </dependency> </dependencies> </project>