1 Star 0 Fork 2

softdawn/cache-mq

forked from peter/cache-mq 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.64 KB
一键复制 编辑 原始数据 按行查看 历史
peter 提交于 2020-04-10 17:00 . update
<?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>cn.rdtimes</groupId>
<artifactId>BZFramework-Cache-MQ-Imp</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<redis.version>3.2.0</redis.version>
<rabbitmq.version>5.8.0</rabbitmq.version>
<kafka.version>2.3.1</kafka.version>
<active.version>5.15.11</active.version>
<rocket.version>4.7.0</rocket.version>
<spymemcached.version>2.10.3</spymemcached.version>
<cache-mq.version>1.3</cache-mq.version>
</properties>
<dependencies>
<!-- cache-mq interface -->
<dependency>
<groupId>cn.rdtimes</groupId>
<artifactId>BZFramework-mq-cache</artifactId>
<version>${cache-mq.version}</version>
</dependency>
<!-- cache -->
<dependency>
<groupId>cn.rdtimes</groupId>
<artifactId>spymemcached</artifactId>
<version>${spymemcached.version}</version>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>${redis.version}</version>
</dependency>
<!-- mq -->
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>${rabbitmq.version}</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>${kafka.version}</version>
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-client</artifactId>
<version>${active.version}</version>
</dependency>
<dependency>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-client</artifactId>
<version>${rocket.version}</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- <version>3.3</version>-->
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.5</version>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<!-- <manifest>-->
<!-- <mainClass></mainClass>-->
<!-- </manifest>-->
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>assembly</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/softdawn/cache-mq.git
git@gitee.com:softdawn/cache-mq.git
softdawn
cache-mq
cache-mq
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385