event-bus-rocketmq-all
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.weihubeats</groupId> <artifactId>event-bus-rocketmq-all</artifactId> <version>0.0.1</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> <groupId>io.github.weihubeats</groupId> <artifactId>event-bus-rocketmq-all</artifactId> <version>0.0.1</version> <packaging>pom</packaging> <name>event-bus-rocketmq-all</name> <description>event-bus-rocketmq-all</description> <url>https://github.com/weihubeats/event-bus-rocketmq-all</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>weihubeats</name> <email>weihubeats@163.com</email> <organization>https://weihubeats.blog.csdn.net/</organization> </developer> </developers> <modules> <module>event-bus-rocketmq-spring-boot-starter</module> <module>event-bus-rocketmq-spring-boot-samples</module> <module>event-bus-rocketmq-factory</module> <module>event-bus-rocketmq-apache</module> <module>event-bus-rocketmq-apache-boot-starter</module> </modules> <scm> <connection>scm:git@github.com:weihubeats/mq-idempotent.git</connection> <developerConnection>scm:git@github.com:weihubeats/mq-idempotent.git</developerConnection> <url>git@github.com:weihubeats/mq-idempotent.git</url> </scm> <issueManagement> <system>Github Issue</system> <url>https://github.com/weihubeats/mq-idempotent/issues</url> </issueManagement> <distributionManagement> <repository> <id>sonatype</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <properties> <aliyun.openservices.ons-client.version>1.8.8.5.Final</aliyun.openservices.ons-client.version> <maven.compiler.source>11</maven.compiler.source> <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version> <guava.version>33.4.6-jre</guava.version> <flatten-maven-plugin.version>1.2.7</flatten-maven-plugin.version> <spring-boot.version>2.7.0</spring-boot.version> <revision>0.0.1</revision> <lombok.version>1.18.22</lombok.version> <maven.compiler.target>11</maven.compiler.target> <rocketmq-client.version>5.3.2</rocketmq-client.version> <org.redisson.version>3.14.1</org.redisson.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <fastjson.version>2.0.33</fastjson.version> <junit.version>4.13.1</junit.version> <hutool-http.version>5.8.0</hutool-http.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <dependency> <groupId>org.apache.rocketmq</groupId> <artifactId>rocketmq-client</artifactId> <version>${rocketmq-client.version}</version> </dependency> <dependency> <groupId>com.aliyun.openservices</groupId> <artifactId>ons-client</artifactId> <version>${aliyun.openservices.ons-client.version}</version> </dependency> <dependency> <groupId>io.github.weihubeats</groupId> <artifactId>event-bus-rocketmq-apache-boot-starter</artifactId> <version>0.0.1</version> </dependency> <dependency> <groupId>io.github.weihubeats</groupId> <artifactId>event-bus-rocketmq-factory</artifactId> <version>0.0.1</version> </dependency> <dependency> <groupId>io.github.weihubeats</groupId> <artifactId>event-bus-rocketmq-spring-boot-starter</artifactId> <version>0.0.1</version> </dependency> <dependency> <groupId>io.github.weihubeats</groupId> <artifactId>event-bus-rocketmq-apache</artifactId> <version>0.0.1</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>${fastjson.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.17.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> <version>${spring-boot.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>${spring-boot.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <version>${spring-boot.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${spring-boot.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>${spring-boot.version}</version> </dependency> <dependency> <groupId>org.redisson</groupId> <artifactId>redisson</artifactId> <version>${org.redisson.version}</version> </dependency> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-http</artifactId> <version>${hutool-http.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> <configuration> <attach>true</attach> </configuration> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.7.1</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> <additionalJOptions> <additionalJOption>-Xdoclint:none</additionalJOption> </additionalJOptions> </configuration> </plugin> <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> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>${flatten-maven-plugin.version}</version> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </plugin> </plugins> </build> </project>