2025-06-03 17:18:11 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<groupId>com.nflg</groupId>
|
|
|
|
|
|
<artifactId>nflg-wms</artifactId>
|
|
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<artifactId>nflg-wms-admin</artifactId>
|
|
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
|
|
<name>服务-管理后台</name>
|
|
|
|
|
|
<description>管理后台服务</description>
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.nflg</groupId>
|
|
|
|
|
|
<artifactId>nflg-wms-common</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.nflg</groupId>
|
|
|
|
|
|
<artifactId>nflg-wms-starter</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.promeg</groupId>
|
|
|
|
|
|
<artifactId>tinypinyin</artifactId>
|
|
|
|
|
|
<version>2.0.3</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-data-ldap</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-test</artifactId>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
2025-07-11 18:45:43 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
|
|
<artifactId>javase</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-06-27 18:04:24 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-mail</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
2025-09-28 16:47:40 +08:00
|
|
|
|
<version>2.20.0</version>
|
2025-06-27 18:04:24 +08:00
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
</dependency>
|
2025-07-04 16:22:46 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>tech.powerjob</groupId>
|
|
|
|
|
|
<artifactId>powerjob-client</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-07-09 17:59:36 +08:00
|
|
|
|
<!--生成pdf-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.xhtmlrenderer</groupId>
|
|
|
|
|
|
<artifactId>flying-saucer-pdf</artifactId>
|
2025-09-26 18:04:00 +08:00
|
|
|
|
<version>9.13.3</version>
|
2025-07-09 17:59:36 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<artifactId>bcprov-jdk14</artifactId>
|
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.itextpdf</groupId>
|
2025-09-26 18:04:00 +08:00
|
|
|
|
<artifactId>itext7-core</artifactId>
|
|
|
|
|
|
<version>7.2.6</version>
|
|
|
|
|
|
<type>pom</type>
|
2025-07-09 17:59:36 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.itextpdf</groupId>
|
2025-09-26 18:04:00 +08:00
|
|
|
|
<artifactId>font-asian</artifactId>
|
|
|
|
|
|
<version>7.2.6</version>
|
2025-07-09 17:59:36 +08:00
|
|
|
|
</dependency>
|
2025-07-19 20:23:37 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.sap.conn.jco</groupId>
|
|
|
|
|
|
<artifactId>sapjco3</artifactId>
|
|
|
|
|
|
<version>3.1.12</version>
|
|
|
|
|
|
<scope>system</scope>
|
|
|
|
|
|
<systemPath>${project.basedir}/lib/sapjco3.jar</systemPath>
|
|
|
|
|
|
</dependency>
|
2025-07-22 18:43:17 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>de.flapdoodle.embed</groupId>
|
|
|
|
|
|
<artifactId>de.flapdoodle.embed.mongo</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
2025-07-27 21:05:02 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.idev.excel</groupId>
|
|
|
|
|
|
<artifactId>fastexcel</artifactId>
|
2025-09-28 16:47:40 +08:00
|
|
|
|
<version>1.3.0</version>
|
2025-07-27 21:05:02 +08:00
|
|
|
|
</dependency>
|
2025-07-30 18:23:29 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.retry</groupId>
|
|
|
|
|
|
<artifactId>spring-retry</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-07-31 18:03:22 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.loki4j</groupId>
|
|
|
|
|
|
<artifactId>loki-logback-appender</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-08-11 14:22:07 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.redisson</groupId>
|
|
|
|
|
|
<artifactId>redisson-spring-boot-starter</artifactId>
|
2025-09-28 16:47:40 +08:00
|
|
|
|
<version>3.52.0</version>
|
2025-08-11 14:22:07 +08:00
|
|
|
|
</dependency>
|
2025-08-22 18:52:00 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2025-09-28 16:47:40 +08:00
|
|
|
|
<groupId>com.github.mwiede</groupId>
|
2025-09-12 18:03:23 +08:00
|
|
|
|
<artifactId>jsch</artifactId>
|
2025-09-28 16:47:40 +08:00
|
|
|
|
<version>2.27.3</version>
|
2025-08-22 18:52:00 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
|
</dependency>
|
2025-06-03 17:18:11 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
2025-06-26 18:13:37 +08:00
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2025-06-03 17:18:11 +08:00
|
|
|
|
<configuration>
|
2025-06-26 18:13:37 +08:00
|
|
|
|
<skip>true</skip>
|
2025-06-03 17:18:11 +08:00
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
2025-07-19 20:23:37 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
<id>copy-external-libs</id>
|
|
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<!-- 指定源目录(项目根目录下的lib) -->
|
|
|
|
|
|
<resources>
|
|
|
|
|
|
<resource>
|
|
|
|
|
|
<directory>${project.basedir}/lib</directory>
|
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
|
</resource>
|
|
|
|
|
|
</resources>
|
|
|
|
|
|
<!-- 指定目标目录(与依赖库相同的目录) -->
|
|
|
|
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
|
|
|
<!-- 自动创建目标目录 -->
|
|
|
|
|
|
<overwrite>true</overwrite>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
2025-06-03 17:18:11 +08:00
|
|
|
|
<plugin>
|
2025-06-26 18:13:37 +08:00
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
<id>copy-dependencies</id>
|
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
|
|
|
<excludeGroupIds>${project.groupId}</excludeGroupIds>
|
|
|
|
|
|
<includeScope>runtime</includeScope>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2025-06-03 17:18:11 +08:00
|
|
|
|
<configuration>
|
2025-06-26 18:13:37 +08:00
|
|
|
|
<archive>
|
|
|
|
|
|
<manifest>
|
|
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
|
|
<classpathPrefix>lib/</classpathPrefix>
|
|
|
|
|
|
<mainClass>com.nflg.wms.admin.AdminApplication</mainClass>
|
|
|
|
|
|
</manifest>
|
|
|
|
|
|
</archive>
|
2025-06-03 17:18:11 +08:00
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
2025-06-26 18:13:37 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<artifactSet>
|
|
|
|
|
|
<includes>
|
|
|
|
|
|
<include>${project.groupId}:*</include>
|
|
|
|
|
|
</includes>
|
|
|
|
|
|
</artifactSet>
|
|
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
2025-06-03 17:18:11 +08:00
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|