118 lines
3.8 KiB
XML
118 lines
3.8 KiB
XML
|
|
<?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>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-bom</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
<packaging>pom</packaging>
|
||
|
|
|
||
|
|
<description>common依赖项</description>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<revision>0.0.1</revision>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencyManagement>
|
||
|
|
<dependencies>
|
||
|
|
<!-- 核心模块 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-core</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 接口模块 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-doc</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- excel -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-excel</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 序列化模块 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-json</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- kafka -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-kafka</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 日志记录 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-log</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-mongodb</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- mqtt -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-mqtt</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 数据库服务 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-mybatis</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- OSS -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-oss</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 缓存服务 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-redis</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- satoken -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-satoken</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- web服务 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-web</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- WebSocket模块 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.zxwl</groupId>
|
||
|
|
<artifactId>zxwl-common-websocket</artifactId>
|
||
|
|
<version>${revision}</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</dependencyManagement>
|
||
|
|
</project>
|