mirror of
https://github.com/jetty/jetty.project.git
synced 2025-02-20 21:58:33 +00:00
* use a lookup dedicated to the target class (webapp classloader) to avoid collision with server classloader Signed-off-by: olivier lamy <oliver.lamy@gmail.com> * cleanup war test dependencies Signed-off-by: olivier lamy <oliver.lamy@gmail.com> * remove empty lines Signed-off-by: olivier lamy <oliver.lamy@gmail.com> * make it clear it is a bad websocket webapp only for testing purpose and add a good websocket webapp Signed-off-by: olivier lamy <oliver.lamy@gmail.com> * no need anymore of this dependency Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
33 lines
1.1 KiB
XML
33 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<parent>
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
<artifactId>test-webapps-parent</artifactId>
|
|
<version>10.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>test-websocket-webapp</artifactId>
|
|
<packaging>war</packaging>
|
|
|
|
<name>Test :: Jetty Websocket Simple Webapp</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
<artifactId>jetty-javax-websocket-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
<artifactId>websocket-javax-common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
<artifactId>jetty-servlet-api</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|