glassfish-client-ee11
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.omnifaces.arquillian</groupId> <artifactId>glassfish-client-ee11</artifactId> <version>1.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) [2021] Payara Foundation and/or its affiliates. All rights reserved. The contents of this file are subject to the terms of either the GNU General Public License Version 2 only ("GPL") or the Common Development and Distribution License("CDDL") (collectively, the "License"). You may not use this file except in compliance with the License. You can obtain a copy of the License at https://github.com/payara/Payara/blob/master/LICENSE.txt See the License for the specific language governing permissions and limitations under the License. When distributing the software, include this License Header Notice in each file and include the License file at glassfish/legal/LICENSE.txt. GPL Classpath Exception: The Payara Foundation designates this particular file as subject to the "Classpath" exception as provided by the Payara Foundation in the GPL Version 2 section of the License file that accompanied this code. Modifications: If applicable, add the following below the License Header, with the fields enclosed by brackets [] replaced by your own identifying information: "Portions Copyright [year] [name of copyright owner]" Contributor(s): If you wish your version of this file to be governed by only the CDDL or only the GPL Version 2, indicate your decision by adding "[Contributor] elects to include this software in this distribution under the [CDDL or GPL Version 2] license." If you don't indicate a single choice of license, a recipient has the option to distribute your version of this file under either the CDDL, the GPL Version 2 or to extend the choice of license to its licensees as provided above. However, if you add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the option applies only if the new code is made subject to such option by the copyright holder. --> <!-- Portions Copyright [2023, 2023] [OmniFish and/or its affiliates] --> <!-- Portions Copyright [2021, 2022] [OmniFaces and/or its affiliates] --> <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> <groupId>org.omnifaces.arquillian</groupId> <artifactId>glassfish-client-ee11</artifactId> <version>1.8</version> <name>GlassFish client libs for Jakarta EE 11</name> <description> GlassFish Container integrations for the Arquillian Project. Based on the JBoss GlassFish container integrations. Based on the Payara Payara container integrations. </description> <url>https://github.com/OmniFish-EE</url> <licenses> <license> <name>CDDL + GPLv2 with classpath exception</name> <url>http://glassfish.java.net/nonav/public/CDDL+GPL.html</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <name>OmniFish Team</name> <organization>OmniFish</organization> <organizationUrl>https://omnifish.ee</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:OmniFish-EE/arquillian-container-glassfish.git</connection> <url>scm:git:git@github.com:OmniFish-EE/arquillian-container-glassfish.git</url> <developerConnection>scm:git:git@github.com:OmniFish-EE/arquillian-container-glassfish.git</developerConnection> <tag>${project.version}</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <version.jersey>4.0.0-M1</version.jersey> </properties> <dependencies> <!-- Yasson (JSON-B RI) --> <dependency> <groupId>org.eclipse</groupId> <artifactId>yasson</artifactId> <version>3.0.4</version> </dependency> <!-- Jaxb-osgi (JAX-B RI) --> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-osgi</artifactId> <version>4.0.5</version> </dependency> <!-- WebSocket client dependencies --> <dependency> <groupId>org.glassfish.tyrus</groupId> <artifactId>tyrus-client</artifactId> <version>2.2.0-M1</version> </dependency> <dependency> <groupId>org.glassfish.tyrus</groupId> <artifactId>tyrus-container-grizzly-client</artifactId> <version>2.2.0-M1</version> </dependency> <!-- Jakarta REST client API dependencies --> <dependency> <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-client</artifactId> <version>${version.jersey}</version> </dependency> <dependency> <groupId>org.glassfish.jersey.inject</groupId> <artifactId>jersey-hk2</artifactId> <version>${version.jersey}</version> </dependency> <!-- Jakarta REST client supporting JSON responses --> <dependency> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-json-jackson</artifactId> <version>${version.jersey}</version> </dependency> <dependency> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-json-processing</artifactId> <version>${version.jersey}</version> </dependency> <dependency> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-json-binding</artifactId> <version>${version.jersey}</version> </dependency> <!-- Jakarta REST client supporting XML responses --> <dependency> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-jaxb</artifactId> <version>${version.jersey}</version> </dependency> <!-- Jakarta REST client able to work with SSE --> <dependency> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-sse</artifactId> <version>${version.jersey}</version> </dependency> <!-- Jakarta REST client able to work with MultiPart --> <dependency> <groupId>org.glassfish.jersey.media</groupId> <artifactId>jersey-media-multipart</artifactId> <version>${version.jersey}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.6</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <!-- Configure snapshot deployment to Sonatype. --> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <!-- Release deploy: mvn clean deploy -P release --> <profiles> <profile> <id>release</id> <build> <plugins> <!-- Signing with GPG is a requirement for a release deployment to Maven central. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>