2012-06-12 15:43:29 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-06-24 11:42:39 -04:00
|
|
|
<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">
|
2018-10-03 05:15:30 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-parent</artifactId>
|
2020-07-10 03:50:56 -04:00
|
|
|
<version>11.0.0.beta1</version>
|
2018-10-03 05:15:30 -04:00
|
|
|
</parent>
|
2012-06-12 15:43:29 -04:00
|
|
|
|
2018-10-03 05:15:30 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-05-12 01:10:44 -04:00
|
|
|
<artifactId>websocket-core-tests</artifactId>
|
|
|
|
<name>Jetty :: Websocket :: Core :: Tests</name>
|
2012-06-12 15:43:29 -04:00
|
|
|
|
2018-10-03 05:15:30 -04:00
|
|
|
<properties>
|
2020-05-12 01:10:44 -04:00
|
|
|
<bundle-symbolic-name>${project.groupId}.core.tests</bundle-symbolic-name>
|
2018-10-03 05:15:30 -04:00
|
|
|
</properties>
|
2012-06-12 15:43:29 -04:00
|
|
|
|
2018-10-03 05:15:30 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2020-05-12 01:10:44 -04:00
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-core-client</artifactId>
|
2019-02-12 23:03:15 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2018-10-03 05:15:30 -04:00
|
|
|
<dependency>
|
2020-05-12 01:10:44 -04:00
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-core-server</artifactId>
|
2018-10-03 05:15:30 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-05-12 01:10:44 -04:00
|
|
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
|
|
|
<artifactId>websocket-core-common</artifactId>
|
2018-10-03 05:15:30 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2020-02-18 11:40:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-10-03 05:15:30 -04:00
|
|
|
</dependencies>
|
2012-06-12 15:43:29 -04:00
|
|
|
|
2018-10-03 05:15:30 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2020-05-14 02:02:21 -04:00
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- No point deploying testing projects -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<!-- No point building javadoc on testing projects -->
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
2018-10-03 05:15:30 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-12-22 06:16:23 -05:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>autobahn</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>autobahn</name>
|
|
|
|
<value>true</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>me.normanmaurer.maven.autobahntestsuite</groupId>
|
|
|
|
<artifactId>autobahntestsuite-maven-plugin</artifactId>
|
2019-01-25 00:10:24 -05:00
|
|
|
<version>0.1.6</version>
|
2018-12-22 06:16:23 -05:00
|
|
|
<configuration>
|
|
|
|
|
|
|
|
<!-- Optional configuration -->
|
|
|
|
<!-- The port to bind the server on. Default is to choose a random free port. -->
|
|
|
|
<!--port>9090</port-->
|
|
|
|
|
|
|
|
<!-- The number of milliseconds to wait for the server to startup -->
|
|
|
|
<waitTime>20000</waitTime>
|
|
|
|
<generateJUnitXml>true</generateJUnitXml>
|
|
|
|
<cases>
|
|
|
|
<case>*</case>
|
|
|
|
</cases>
|
2019-01-25 00:10:24 -05:00
|
|
|
<testFailureIgnore>true</testFailureIgnore>
|
2018-12-22 06:16:23 -05:00
|
|
|
<excludeCases></excludeCases>
|
|
|
|
<failOnNonStrict>false</failOnNonStrict>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>fuzzingclient</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2019-01-25 00:10:24 -05:00
|
|
|
<!-- The class that contains a main method which accepts the port as a parameter to start the server. -->
|
2019-11-06 19:06:14 -05:00
|
|
|
<mainClass>org.eclipse.jetty.websocket.core.autobahn.CoreAutobahnServer</mainClass>
|
2018-12-22 06:16:23 -05:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2012-06-12 15:43:29 -04:00
|
|
|
</project>
|