redismq-samples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.zhaohaoh</groupId>
<artifactId>redismq-samples</artifactId>
<version>0.5.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">
<parent>
<artifactId>redismq</artifactId>
<groupId>io.github.zhaohaoh</groupId>
<version>0.5.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<name>redismq-samples</name>
<url>https://github.com/zhaohaoh/redis-mq</url>
<artifactId>redismq-samples</artifactId>
<description>redismq samples</description>
<dependencies>
<dependency>
<groupId>net.java.dev.jna</groupId>
<artifactId>jna</artifactId>
<version>5.18.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>io.seata</groupId>-->
<!-- <artifactId>seata-all</artifactId>-->
<!-- <version>${seata.version}</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.framework</groupId>-->
<!-- <artifactId>framework-knife4j</artifactId>-->
<!-- <version>1.0.0</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.framework</groupId>-->
<!-- <artifactId>framework-db-config</artifactId>-->
<!-- <version>1.0.0</version>-->
<!-- </dependency>-->
</dependencies>
<profiles>
<profile>
<id>spring-boot-2</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>io.github.zhaohaoh</groupId>
<artifactId>redismq-spring-boot-starter</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>spring-boot-3</id>
<dependencies>
<dependency>
<groupId>io.github.zhaohaoh</groupId>
<artifactId>redismq-spring-boot3-starter</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>spring-boot-4</id>
<dependencies>
<dependency>
<groupId>io.github.zhaohaoh</groupId>
<artifactId>redismq-spring-boot4-starter</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
</project>