mqbridge-jms
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.glassfish.mq</groupId> <artifactId>mqbridge-jms</artifactId> <version>6.6.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2011, 2020 Oracle and/or its affiliates. All rights reserved. Copyright (c) 2021, 2024 Contributors to the Eclipse Foundation 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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.glassfish.mq</groupId> <artifactId>bridge</artifactId> <version>6.6.0</version> </parent> <artifactId>mqbridge-jms</artifactId> <name>MQ Bridge JMS Module</name> <properties> <ws.binary.share.dir>../../../binary/share</ws.binary.share.dir> </properties> <dependencies> <dependency> <groupId>org.glassfish.hk2</groupId> <artifactId>hk2-api</artifactId> </dependency> <dependency> <groupId>jakarta.transaction</groupId> <artifactId>jakarta.transaction-api</artifactId> </dependency> <dependency> <groupId>jakarta.jms</groupId> <artifactId>jakarta.jms-api</artifactId> </dependency> <dependency> <groupId>org.glassfish.mq</groupId> <artifactId>mqcomm-io</artifactId> </dependency> <dependency> <groupId>org.glassfish.mq</groupId> <artifactId>mqcomm-util</artifactId> </dependency> <dependency> <groupId>org.glassfish.mq</groupId> <artifactId>mqbridge-api</artifactId> </dependency> <dependency> <groupId>org.glassfish.mq</groupId> <artifactId>mqdisk-io</artifactId> </dependency> <dependency> <groupId>org.glassfish.mq</groupId> <artifactId>mq-client</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <phase>process-classes</phase> <configuration> <target> <echo level="info" message="Make directory ${ws.binary.share.dir}/opt" /> <mkdir dir="${ws.binary.share.dir}/opt/classes" /> <echo level="info" message="Copy ${project.build.outputDirectory} to ${ws.binary.share.dir}/opt/classes" /> <copy todir="${ws.binary.share.dir}/opt/classes/"> <fileset dir="${project.build.outputDirectory}/" /> </copy> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <!-- Workaround for JEP-358, manifesting in DMQ[Test] --> <id>jdk15plus</id> <activation> <jdk>[15,)</jdk> </activation> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-XX:-ShowCodeDetailsInExceptionMessages</argLine> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>cpd</id> <properties> <minimumTokens>365</minimumTokens> </properties> </profile> </profiles> </project>