35 lines
1.2 KiB
XML
35 lines
1.2 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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.eclipse.jetty.ee11</groupId>
|
|
<artifactId>jetty-ee11-tests</artifactId>
|
|
<version>12.1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>jetty-ee11-test-bad-websocket-webapp</artifactId>
|
|
<packaging>war</packaging>
|
|
|
|
<name>EE11 :: Tests :: Bad Websocket Simple WebApp</name>
|
|
<description>Contains wrong websocket which should fail at deployment</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>jakarta.servlet</groupId>
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>jakarta.websocket</groupId>
|
|
<artifactId>jakarta.websocket-api</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.ee11.websocket</groupId>
|
|
<artifactId>jetty-ee11-websocket-jakarta-common</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|