2023-09-28 15:38:29 +08:00
|
|
|
<?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>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>mjkf.xinke</groupId>
|
2023-10-13 16:01:13 +08:00
|
|
|
<artifactId>mjkf-xinke-boot</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2023-09-28 15:38:29 +08:00
|
|
|
</parent>
|
|
|
|
|
2023-10-13 16:01:13 +08:00
|
|
|
<artifactId>material-manage-service</artifactId>
|
2023-09-28 15:38:29 +08:00
|
|
|
<packaging>jar</packaging>
|
2023-10-13 16:01:13 +08:00
|
|
|
<description>材料管理系统</description>
|
2023-09-28 15:38:29 +08:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- junit -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- mysql -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 登录鉴权插件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mjkf.xinke</groupId>
|
|
|
|
<artifactId>mjkf-xinke-plugin-auth</artifactId>
|
2023-10-13 16:01:13 +08:00
|
|
|
<version>${mjkf-xinke.version}</version>
|
2023-09-28 15:38:29 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 业务功能插件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mjkf.xinke</groupId>
|
|
|
|
<artifactId>mjkf-xinke-plugin-biz</artifactId>
|
2023-10-13 16:01:13 +08:00
|
|
|
<version>${mjkf-xinke.version}</version>
|
2023-09-28 15:38:29 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- C端功能插件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mjkf.xinke</groupId>
|
|
|
|
<artifactId>mjkf-xinke-plugin-client</artifactId>
|
2023-10-13 16:01:13 +08:00
|
|
|
<version>${mjkf-xinke.version}</version>
|
2023-09-28 15:38:29 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 多数据源插件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mjkf.xinke</groupId>
|
|
|
|
<artifactId>mjkf-xinke-plugin-dbs</artifactId>
|
2023-10-13 16:01:13 +08:00
|
|
|
<version>${mjkf-xinke.version}</version>
|
2023-09-28 15:38:29 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 开发工具插件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mjkf.xinke</groupId>
|
|
|
|
<artifactId>mjkf-xinke-plugin-dev</artifactId>
|
2023-10-13 16:01:13 +08:00
|
|
|
<version>${mjkf-xinke.version}</version>
|
2023-09-28 15:38:29 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 代码生成插件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mjkf.xinke</groupId>
|
|
|
|
<artifactId>mjkf-xinke-plugin-gen</artifactId>
|
2023-10-13 16:01:13 +08:00
|
|
|
<version>${mjkf-xinke.version}</version>
|
2023-09-28 15:38:29 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 移动端管理插件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mjkf.xinke</groupId>
|
|
|
|
<artifactId>mjkf-xinke-plugin-mobile</artifactId>
|
2023-10-13 16:01:13 +08:00
|
|
|
<version>${mjkf-xinke.version}</version>
|
2023-09-28 15:38:29 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 系统功能插件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mjkf.xinke</groupId>
|
|
|
|
<artifactId>mjkf-xinke-plugin-sys</artifactId>
|
2023-10-13 16:01:13 +08:00
|
|
|
<version>${mjkf-xinke.version}</version>
|
2023-09-28 15:38:29 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 动态租户插件 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mjkf.xinke</groupId>
|
|
|
|
<artifactId>mjkf-xinke-plugin-ten</artifactId>
|
2023-10-13 16:01:13 +08:00
|
|
|
<version>${mjkf-xinke.version}</version>
|
2023-09-28 15:38:29 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<version>2.5.12</version>
|
|
|
|
<configuration>
|
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|