xxl-mq-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.xuxueli</groupId> <artifactId>xxl-mq-core</artifactId> <version>1.4.0</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> <groupId>com.xuxueli</groupId> <artifactId>xxl-mq</artifactId> <version>1.4.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>xxl-mq-core</artifactId> <packaging>jar</packaging> <dependencies> <!-- xxl-tool --> <dependency> <groupId>com.xuxueli</groupId> <artifactId>xxl-tool</artifactId> <version>${xxl-tool.version}</version> </dependency> <!-- gson --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson.version}</version> </dependency> <!-- slf4j-reload4j --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-reload4j</artifactId> <version>${slf4j-api.version}</version> <scope>test</scope> </dependency> <!-- junit --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>${junit-jupiter.version}</version> <scope>test</scope> </dependency> <!-- spring support (provided) --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> <scope>provided</scope> </dependency> </dependencies> </project>