Files
material-manage-service/pom.xml
2023-11-15 10:45:34 +08:00

176 lines
5.7 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>
<parent>
<groupId>mjkf.xinke</groupId>
<artifactId>mjkf-xinke-boot</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>material-manage-service</artifactId>
<packaging>jar</packaging>
<description>材料管理系统</description>
<properties>
<dep.xxs-common-core.version>2.3.6.10-SNAPSHOT</dep.xxs-common-core.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<java.version>11</java.version>
</properties>
<repositories>
<repository>
<id>maven-snapshots-1</id>
<name>maven-snapshots-1</name>
<url>http://xxs1110.local:8082/repository/maven-snapshots/</url>
<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>
<dependencies>
<!--基础依赖库-->
<dependency>
<groupId>com.jgy.xxs</groupId>
<artifactId>network_base</artifactId>
<version>${dep.xxs-common-core.version}</version>
</dependency>
<!-- 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>
<version>${mjkf-xinke.version}</version>
</dependency>
<!-- 业务功能插件 -->
<dependency>
<groupId>mjkf.xinke</groupId>
<artifactId>mjkf-xinke-plugin-biz</artifactId>
<version>${mjkf-xinke.version}</version>
</dependency>
<!-- C端功能插件 -->
<dependency>
<groupId>mjkf.xinke</groupId>
<artifactId>mjkf-xinke-plugin-client</artifactId>
<version>${mjkf-xinke.version}</version>
</dependency>
<!-- 多数据源插件 -->
<dependency>
<groupId>mjkf.xinke</groupId>
<artifactId>mjkf-xinke-plugin-dbs</artifactId>
<version>${mjkf-xinke.version}</version>
</dependency>
<!-- 开发工具插件 -->
<dependency>
<groupId>mjkf.xinke</groupId>
<artifactId>mjkf-xinke-plugin-dev</artifactId>
<version>${mjkf-xinke.version}</version>
</dependency>
<!-- 代码生成插件 -->
<dependency>
<groupId>mjkf.xinke</groupId>
<artifactId>mjkf-xinke-plugin-gen</artifactId>
<version>${mjkf-xinke.version}</version>
</dependency>
<!-- 移动端管理插件 -->
<dependency>
<groupId>mjkf.xinke</groupId>
<artifactId>mjkf-xinke-plugin-mobile</artifactId>
<version>${mjkf-xinke.version}</version>
</dependency>
<!-- 系统功能插件 -->
<dependency>
<groupId>mjkf.xinke</groupId>
<artifactId>mjkf-xinke-plugin-sys</artifactId>
<version>${mjkf-xinke.version}</version>
</dependency>
<!-- 动态租户插件 -->
<dependency>
<groupId>mjkf.xinke</groupId>
<artifactId>mjkf-xinke-plugin-ten</artifactId>
<version>${mjkf-xinke.version}</version>
</dependency>
<!---->
<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>
</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>