mirror of
https://gitee.com/myxzgzs/boyuehasfj-java.git
synced 2025-08-08 06:52:42 +08:00
97 lines
3.1 KiB
XML
97 lines
3.1 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">
|
|
<parent>
|
|
<artifactId>boyuehasfj-java</artifactId>
|
|
<groupId>com.boyue</groupId>
|
|
<version>3.8.9-G</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>boyue-models</artifactId>
|
|
|
|
<description>
|
|
中间件
|
|
</description>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- 定时任务模块 -->
|
|
<dependency>
|
|
<groupId>com.boyue</groupId>
|
|
<artifactId>boyue-quartz</artifactId>
|
|
<version>${boyue.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 代码生成模块 -->
|
|
<dependency>
|
|
<groupId>com.boyue</groupId>
|
|
<artifactId>boyue-generator</artifactId>
|
|
<version>${boyue.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 在线开发模块 -->
|
|
<dependency>
|
|
<groupId>com.boyue</groupId>
|
|
<artifactId>boyue-online</artifactId>
|
|
<version>${boyue.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 消息模块-->
|
|
<dependency>
|
|
<groupId>com.boyue</groupId>
|
|
<artifactId>boyue-message</artifactId>
|
|
<version>${boyue.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 表单模块-->
|
|
<dependency>
|
|
<groupId>com.boyue</groupId>
|
|
<artifactId>boyue-form</artifactId>
|
|
<version>${boyue.version}</version>
|
|
</dependency>
|
|
|
|
<!-- flowable模块-->
|
|
<dependency>
|
|
<groupId>com.boyue</groupId>
|
|
<artifactId>boyue-flowable</artifactId>
|
|
<version>${boyue.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 手机号认证-->
|
|
<dependency>
|
|
<groupId>com.boyue</groupId>
|
|
<artifactId>boyue-tfa-phone</artifactId>
|
|
<version>${boyue.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 邮箱认证 -->
|
|
<dependency>
|
|
<groupId>com.boyue</groupId>
|
|
<artifactId>boyue-tfa-email</artifactId>
|
|
<version>${boyue.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 淮安市司法局模块 -->
|
|
<dependency>
|
|
<groupId>com.boyue</groupId>
|
|
<artifactId>boyue-hasfj</artifactId>
|
|
<version>${boyue.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
|
|
<modules>
|
|
<module>boyue-models-starter</module>
|
|
<module>boyue-generator</module>
|
|
<module>boyue-quartz</module>
|
|
<module>boyue-online</module>
|
|
<module>boyue-message</module>
|
|
<module>boyue-form</module>
|
|
<module>boyue-flowable</module>
|
|
<module>boyue-hasfj</module>
|
|
</modules>
|
|
<packaging>pom</packaging>
|
|
</project> |