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-10-26 10:13:33 +08:00
|
|
|
<properties>
|
2023-11-11 12:24:39 +08:00
|
|
|
<dep.xxs-common-core.version>2.3.6.10-SNAPSHOT</dep.xxs-common-core.version>
|
2023-10-26 10:13:33 +08:00
|
|
|
</properties>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>maven-snapshots-1</id>
|
|
|
|
<name>maven-snapshots-1</name>
|
2023-11-15 10:28:20 +08:00
|
|
|
<url>http://xxs1110.local:8082/repository/maven-snapshots/</url>
|
2023-10-26 10:13:33 +08:00
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>maven-snapshots-1</id>
|
|
|
|
<url>http://xxs1110.local:8082/repository/maven-snapshots/</url>
|
|
|
|
<layout>default</layout>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2023-09-28 15:38:29 +08:00
|
|
|
<dependencies>
|
2023-10-26 10:13:33 +08:00
|
|
|
<!--基础依赖库-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jgy.xxs</groupId>
|
|
|
|
<artifactId>network_base</artifactId>
|
|
|
|
<version>${dep.xxs-common-core.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2023-09-28 15:38:29 +08:00
|
|
|
<!-- 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>
|
|
|
|
|
2023-11-11 12:24:39 +08:00
|
|
|
<!---->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-generator</artifactId>
|
|
|
|
<version>${mybatis.plus.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--MyBatis Plus 代码自动生成模板引擎-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.freemarker</groupId>
|
|
|
|
<artifactId>freemarker</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mitre.dsmiley.httpproxy</groupId>
|
|
|
|
<artifactId>smiley-http-proxy-servlet</artifactId>
|
|
|
|
<version>1.12.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2023-09-28 15:38:29 +08:00
|
|
|
</dependencies>
|
|
|
|
|
2023-11-11 12:24:39 +08:00
|
|
|
|
2023-09-28 15:38:29 +08:00
|
|
|
<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>
|