spring-cloud-stream-binder-jms
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.boutouil</groupId>
<artifactId>spring-cloud-stream-binder-jms</artifactId>
<version>3.0.1.RELEASE</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-parent</artifactId>
<version>2022.0.2</version>
<relativePath></relativePath>
</parent>
<groupId>com.boutouil</groupId>
<artifactId>spring-cloud-stream-binder-jms</artifactId>
<version>3.0.1.RELEASE</version>
<description>A Spring Boot Cloud Stream binder using JMS</description>
<url>https://github.com/mohammedamineboutouil/spring-cloud-stream-binder-jms</url>
<organization>
<name>com.boutouil</name>
<url>https://github.com/mohammedamineboutouil</url>
</organization>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://github.com/mohammedamineboutouil/spring-cloud-stream-binder-jms/blob/main/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Mohammed Amine BOUTOUIL</name>
<email>boutouilmohammedamine@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/mohammedamineboutouil/spring-cloud-stream-binder-jms.git</connection>
<developerConnection>scm:git:ssh://git@github.com:mohammedamineboutouil/spring-cloud-stream-binder-jms.git</developerConnection>
<url>https://github.com/mohammedamineboutouil/spring-cloud-stream-binder-jms</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/mohammedamineboutouil/spring-cloud-stream-binder-jms/issues</url>
</issueManagement>
<properties>
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
<java.version>17</java.version>
<changelist>-RELEASE</changelist>
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
<apache-artemis.version>2.28.0</apache-artemis.version>
<revision>3.0.1</revision>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
</dependency>
<dependency>
<groupId>jakarta.jms</groupId>
<artifactId>jakarta.jms-api</artifactId>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-artemis</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>artemis-jms-server</artifactId>
<version>${apache-artemis.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.3.0</version>
<executions>
<execution>
<id>flatten.clean</id>
<phase>process-resources</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
<execution>
<id>flatten.process-resources</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
</executions>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>attach-tests</id>
<goals>
<goal>test-jar</goal>
<goal>help</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
<goal>test-jar</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>
<doclint>none</doclint>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub mohammedamineboutouil Apache Maven Packages</name>
<url>https://maven.pkg.github.com/mohammedamineboutouil/spring-cloud-stream-binder-jms</url>
</repository>
</distributionManagement>
<properties>
<changelist>.RELEASE</changelist>
<deployAtEnd>true</deployAtEnd>
<skipTests>true</skipTests>
</properties>
</profile>
<profile>
<id>github</id>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub mohammedamineboutouil Apache Maven Packages</name>
<url>https://maven.pkg.github.com/mohammedamineboutouil/spring-cloud-stream-binder-jms</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>maven-central</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus-staging-maven-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</profile>
</profiles>
</project>