cometd-java-server-common
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.cometd.java</groupId>
<artifactId>cometd-java-server-common</artifactId>
<version>9.0.0</version>
</dependency><?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.cometd.java</groupId>
<artifactId>cometd-java-server</artifactId>
<version>9.0.0</version>
</parent>
<artifactId>cometd-java-server-common</artifactId>
<name>CometD :: Java :: Server :: Common</name>
<dependencies>
<dependency>
<groupId>org.cometd.java</groupId>
<artifactId>cometd-java-api-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.cometd.java</groupId>
<artifactId>cometd-java-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jmx</artifactId>
<version>${jetty-version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util-ajax</artifactId>
<version>${jetty-version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-client</artifactId>
<version>${jetty-version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
@{argLine}
<!-- Jetty's JMX is an optional dependency, add it explicitly to the module graph. -->
--add-modules org.eclipse.jetty.jmx
<!-- Jetty's JSON is an optional dependency, add it explicitly to the module graph. -->
--add-modules org.eclipse.jetty.util.ajax
</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>