activemq-client-jakarta
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.hyte.activemq</groupId> <artifactId>activemq-client-jakarta</artifactId> <version>5.18.0.hyte-1</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> <groupId>io.hyte.activemq</groupId> <artifactId>activemq-client-jakarta</artifactId> <name>HYTE :: Client :: Client Jakarta</name> <packaging>jar</packaging> <version>5.18.0.hyte-1</version> <description>ActiveMQ Client Jakarta</description> <url>https://activemq.apache.org</url> <inceptionYear>2023</inceptionYear> <organization> <name>HYTE Technologies, Inc.</name> <url>http://hyte.io</url> </organization> <developers> <developer> <name>HYTE Engineering</name> <email>support@hyte.io</email> <url>https://hyte.io</url> <organization>HYTE Technologies, Inc</organization> <organizationUrl>https://hyte.io/</organizationUrl> <properties> <picUrl>https://hyte.io/images/hyte-logo.png</picUrl> </properties> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <issueManagement> <system>github</system> <url>https://github.com/hyteio/activemq-client-jakarta/issues</url> </issueManagement> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/hyteio/activemq-client-jakarta.git</connection> <url>https://github.com/hyteio/activemq-client-jakarta</url> <tag>v5.18.0.hyte-1</tag> </scm> <properties> <activemq.version>5.18.0-SNAPSHOT</activemq.version> <hyte.revision>${project.version}-${buildNumber}</hyte.revision> <hyte.jdk.version>11</hyte.jdk.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- Maven Plugins --> <maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version> <maven-build-helper-maven-plugin.version>3.2.0</maven-build-helper-maven-plugin.version> <maven-buildnumber-plugin.version>3.0.0</maven-buildnumber-plugin.version> <maven-clean-plugin.version>3.1.0</maven-clean-plugin.version> <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <maven-dependency-plugin.version>3.2.0</maven-dependency-plugin.version> <maven-deploy-plugin.version>3.0.0-M1</maven-deploy-plugin.version> <maven-enforcer-plugin.version>3.0.0-M3</maven-enforcer-plugin.version> <maven-exec-plugin.version>3.1.0</maven-exec-plugin.version> <maven-install-plugin.version>3.0.0-M1</maven-install-plugin.version> <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version> <maven-javadoc-plugin.version>3.3.0</maven-javadoc-plugin.version> <maven-nexus-staging-maven-plugin.version>1.6.13</maven-nexus-staging-maven-plugin.version> <maven-release-plugin.version>3.0.0-M4</maven-release-plugin.version> <maven-resources-plugin.version>3.2.0</maven-resources-plugin.version> <maven-resources-plugin-encoding>${default.encoding}</maven-resources-plugin-encoding> <maven-site-plugin.version>3.9.1</maven-site-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <maven-versions-plugin.version>2.12.0</maven-versions-plugin.version> <maven-wagon-maven-plugin.version>1.0</maven-wagon-maven-plugin.version> <maven-wagon-ssh.version>3.0.0</maven-wagon-ssh.version> <buildhelper.skipAttach>true</buildhelper.skipAttach> </properties> <dependencies> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-client</artifactId> <version>${activemq.version}</version> <exclusions> <exclusion> <groupId>jakarta.jms</groupId> <artifactId>jakarta.jms-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>jakarta.jms</groupId> <artifactId>jakarta.jms-api</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.4.20</version> <scope>provided</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${hyte.jdk.version}</source> <target>${hyte.jdk.version}</target> <compilerArgument>-Xlint:unchecked</compilerArgument> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>${maven-assembly-plugin.version}</version> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>${maven-clean-plugin.version}</version> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>${maven-dependency-plugin.version}</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>${maven-install-plugin.version}</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>${maven-build-helper-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>${maven-buildnumber-plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>${maven-versions-plugin.version}</version> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin.version}</version> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>${maven-exec-plugin.version}</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <fork>true</fork> <source>${hyte.jdk.version}</source> <target>${hyte.jdk.version}</target> <meminitial>1024m</meminitial> <maxmem>2024m</maxmem> <compilerArgs /> </configuration> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <version>3.5.0</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <pushChanges>true</pushChanges> <localCheckout>true</localCheckout> <tagNameFormat>v@{project.version}</tagNameFormat> <autoVersionSubmodules>true</autoVersionSubmodules> <goals>clean package deploy</goals> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> </executions> <configuration> <doCheck>false</doCheck> <doUpdate>false</doUpdate> <revisionOnScmFailure>0</revisionOnScmFailure> <shortRevisionLength>7</shortRevisionLength> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-source</id> <phase>initialize</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.apache.activemq</groupId> <artifactId>activemq-client</artifactId> <version>${activemq.version}</version> <classifier>sources</classifier> <type>jar</type> <outputDirectory>${project.build.directory}/copied-sources/activemq-client</outputDirectory> <excludes>**/META-INF/**,**/zeroconf/**</excludes> <includes>**/**</includes> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.google.code.maven-replacer-plugin</groupId> <artifactId>replacer</artifactId> <version>1.5.3</version> <executions> <execution> <phase>initialize</phase> <goals> <goal>replace</goal> </goals> </execution> </executions> <configuration> <includes> <include>${project.build.directory}/copied-sources/activemq-client/**/*.java</include> </includes> <token>javax.jms</token> <value>jakarta.jms</value> <regexFlags> <regexFlag>MULTILINE</regexFlag> </regexFlags> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-resources</id> <phase>generate-sources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/generated-sources</outputDirectory> <resources> <resource> <directory>${project.build.directory}/copied-sources/activemq-client</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>false</skip> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>attach-assemblies</id> <phase>none</phase> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${maven-nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>oss-sonatype-staging</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> <stagingProgressTimeoutMinutes>30</stagingProgressTimeoutMinutes> </configuration> </plugin> </plugins> </build> </profile> </profiles> <repositories> <repository> <id>apache-snapshots</id> <name>Apache Snapshots Repository</name> <url>https://repository.apache.org/content/groups/snapshots-group</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>ops4j.sonatype.snapshots.deploy</id> <name>OPS4J snapshot repository</name> <url>https://oss.sonatype.org/content/repositories/ops4j-snapshots/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>apache-snapshots</id> <name>Apache Snapshots Repository</name> <url>https://repository.apache.org/content/groups/snapshots-group</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> </project>