jakarta.websocket-api
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>jakarta.websocket</groupId> <artifactId>jakarta.websocket-api</artifactId> <version>2.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2018, 2023 Oracle and/or its affiliates and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v. 2.0, which is available at http://www.eclipse.org/legal/epl-2.0. This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License v. 2.0 are satisfied: GNU General Public License, version 2 with the GNU Classpath Exception, which is available at https://www.gnu.org/software/classpath/license.html. SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 --> <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>jakarta.websocket</groupId> <artifactId>jakarta.websocket-all</artifactId> <version>2.2.0</version> </parent> <artifactId>jakarta.websocket-api</artifactId> <packaging>jar</packaging> <name>Jakarta WebSocket - Server API</name> <description>Jakarta WebSocket - Server API</description> <url>https://projects.eclipse.org/projects/ee4j.websocket</url> <properties> <bundle.symbolicName>jakarta.websocket-api</bundle.symbolicName> <extensionName>jakarta.websocket</extensionName> </properties> <build> <resources> <resource> <directory>${project.basedir}/../../</directory> <includes> <include>LICENSE.md</include> <include>NOTICE.md</include> </includes> <targetPath>META-INF</targetPath> </resource> </resources> <plugins> <!-- Plugins from parent --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <release>9</release> <compilerArgs> <arg>-Xlint:all</arg> </compilerArgs> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> <executions> <execution> <id>base-compile</id> <goals> <goal>compile</goal> </goals> <configuration> <release>8</release> <excludes> <exclude>module-info.java</exclude> </excludes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.glassfish.copyright</groupId> <artifactId>glassfish-copyright-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>jakarta.websocket</groupId> <artifactId>jakarta.websocket-client-api</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> </dependencies> </project>