302 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			302 lines
		
	
	
		
			10 KiB
		
	
	
	
		
			XML
		
	
	
	
<?xml version="1.0" encoding="UTF-8"?>
 | 
						|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | 
						|
         xmlns="http://maven.apache.org/POM/4.0.0"
 | 
						|
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 | 
						|
    <parent>
 | 
						|
        <groupId>com.bonus</groupId>
 | 
						|
        <artifactId>bonus-modules</artifactId>
 | 
						|
        <version>24.12.0-SNAPSHOT</version>
 | 
						|
    </parent>
 | 
						|
    <modelVersion>4.0.0</modelVersion>
 | 
						|
 | 
						|
    <artifactId>bonus-smart-canteen-v3</artifactId>
 | 
						|
 | 
						|
    <description>
 | 
						|
        bonus-modules-smart-canteen智慧食堂
 | 
						|
    </description>
 | 
						|
 | 
						|
    <dependencies>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-test</artifactId>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.belerweb</groupId>
 | 
						|
            <artifactId>pinyin4j</artifactId>
 | 
						|
            <version>2.5.1</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.baomidou</groupId>
 | 
						|
            <artifactId>mybatis-plus-boot-starter</artifactId>
 | 
						|
            <version>3.5.7</version>
 | 
						|
        </dependency>
 | 
						|
        <!--加密依赖包-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.github.ulisesbocchio</groupId>
 | 
						|
            <artifactId>jasypt-spring-boot-starter</artifactId>
 | 
						|
            <version>${jasypt-spring-boot-starter.version}</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework</groupId>
 | 
						|
            <artifactId>spring-test</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <!-- SpringCloud Alibaba Nacos -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alibaba.cloud</groupId>
 | 
						|
            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- SpringCloud Alibaba Nacos Config -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alibaba.cloud</groupId>
 | 
						|
            <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- SpringCloud Alibaba Sentinel -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alibaba.cloud</groupId>
 | 
						|
            <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- SpringBoot Actuator -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-actuator</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- Swagger UI -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>io.springfox</groupId>
 | 
						|
            <artifactId>springfox-swagger-ui</artifactId>
 | 
						|
            <version>${swagger.fox.version}</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- Mysql Connector -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.mysql</groupId>
 | 
						|
            <artifactId>mysql-connector-j</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- bonus Common DataSource -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bonus</groupId>
 | 
						|
            <artifactId>bonus-common-datasource</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- bonus Common DataScope -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bonus</groupId>
 | 
						|
            <artifactId>bonus-common-datascope</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- bonus Common Log -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bonus</groupId>
 | 
						|
            <artifactId>bonus-common-log</artifactId>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- bonus Common Swagger -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bonus</groupId>
 | 
						|
            <artifactId>bonus-common-swagger</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.google.guava</groupId>
 | 
						|
            <artifactId>guava</artifactId>
 | 
						|
            <version>30.0-jre</version>
 | 
						|
            <scope>compile</scope>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.boot</groupId>
 | 
						|
            <artifactId>spring-boot-starter-mail</artifactId>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.bonus</groupId>
 | 
						|
            <artifactId>bonus-common-biz</artifactId>
 | 
						|
            <version>24.12.0-SNAPSHOT</version>
 | 
						|
            <scope>compile</scope>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>junit</groupId>
 | 
						|
            <artifactId>junit</artifactId>
 | 
						|
            <scope>test</scope>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
 | 
						|
        <!-- Apache POI dependencies -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.poi</groupId>
 | 
						|
            <artifactId>poi-ooxml</artifactId>
 | 
						|
            <version>5.2.3</version>
 | 
						|
        </dependency>
 | 
						|
        <!--        支付宝支付-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alipay.sdk</groupId>
 | 
						|
            <artifactId>alipay-sdk-java</artifactId>
 | 
						|
            <version>4.34.0.ALL</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.alibaba</groupId>
 | 
						|
            <artifactId>easyexcel</artifactId>
 | 
						|
            <version>3.0.5</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>cn.hutool</groupId>
 | 
						|
            <artifactId>hutool-all</artifactId>
 | 
						|
            <version>5.8.23</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- https://mvnrepository.com/artifact/org.redisson/redisson -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.redisson</groupId>
 | 
						|
            <artifactId>redisson</artifactId>
 | 
						|
            <version>3.44.0</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- https://mvnrepository.com/artifact/org.apache.rocketmq/rocketmq-spring-boot-starter -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.rocketmq</groupId>
 | 
						|
            <artifactId>rocketmq-spring-boot-starter</artifactId>
 | 
						|
            <version>2.3.1</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- https://mvnrepository.com/artifact/org.springframework.amqp/spring-rabbit -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.amqp</groupId>
 | 
						|
            <artifactId>spring-amqp</artifactId>
 | 
						|
            <version>2.4.8</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.springframework.amqp</groupId>
 | 
						|
            <artifactId>spring-rabbit</artifactId>
 | 
						|
            <version>2.4.8</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- https://mvnrepository.com/artifact/org.eclipse.paho/org.eclipse.paho.mqttv5.client -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.eclipse.paho</groupId>
 | 
						|
            <artifactId>org.eclipse.paho.mqttv5.client</artifactId>
 | 
						|
            <version>1.2.5</version>
 | 
						|
        </dependency>
 | 
						|
        <!-- https://mvnrepository.com/artifact/com.xuxueli/xxl-job-core -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.xuxueli</groupId>
 | 
						|
            <artifactId>xxl-job-core</artifactId>
 | 
						|
            <version>2.4.0</version>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.redisson</groupId>
 | 
						|
            <artifactId>redisson-spring-boot-starter</artifactId>
 | 
						|
            <version>3.17.7</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.belerweb</groupId>
 | 
						|
            <artifactId>pinyin4j</artifactId>
 | 
						|
            <version>2.5.1</version>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.google.guava</groupId>
 | 
						|
            <artifactId>guava</artifactId>
 | 
						|
            <version>33.0.0-jre</version>
 | 
						|
            <scope>compile</scope>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.jsoup</groupId>
 | 
						|
            <artifactId>jsoup</artifactId>
 | 
						|
            <version>1.17.2</version> <!-- 检查最新版本 -->
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.arcsoft.face</groupId>
 | 
						|
            <artifactId>arcsoft-sdk-face</artifactId>
 | 
						|
            <version>3.0.0.0-linux</version>
 | 
						|
            <scope>system</scope>
 | 
						|
            <systemPath>${project.basedir}/lib/arcsoft-sdk-face-3.0.0.0-linux.jar</systemPath>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>arcsoft</groupId>
 | 
						|
            <artifactId>arcsoft</artifactId>
 | 
						|
            <version>3.0</version>
 | 
						|
            <scope>system</scope>
 | 
						|
            <systemPath>${project.basedir}/lib/arcsoft-sdk-face-3.0.0.0-windows.jar</systemPath>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!-- groovy-all -->
 | 
						|
        <dependency>
 | 
						|
            <groupId>org.apache.groovy</groupId>
 | 
						|
            <artifactId>groovy</artifactId>
 | 
						|
            <version>4.0.21</version>
 | 
						|
            <scope>system</scope>
 | 
						|
            <systemPath>${project.basedir}/src/main/resources/lib/groovy-4.0.21.jar
 | 
						|
            </systemPath>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <!--HK SDK-->
 | 
						|
        <dependency>
 | 
						|
            <groupId>examples-1.0</groupId>
 | 
						|
            <artifactId>examples</artifactId>
 | 
						|
            <version>1.3.0</version>
 | 
						|
            <scope>system</scope>
 | 
						|
            <systemPath>${project.basedir}/src/main/resources/lib/examples.jar
 | 
						|
            </systemPath>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>jna-1.3.0</groupId>
 | 
						|
            <artifactId>jna</artifactId>
 | 
						|
            <version>1.3.0</version>
 | 
						|
            <scope>system</scope>
 | 
						|
            <systemPath>${project.basedir}/src/main/resources/lib/jna.jar
 | 
						|
            </systemPath>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.infiniteautomation</groupId>
 | 
						|
            <artifactId>modbus4j</artifactId>
 | 
						|
            <version>3.1.0</version>
 | 
						|
            <scope>system</scope>
 | 
						|
            <systemPath>${project.basedir}/src/main/resources/lib/modbus4j-3.0.3.jar</systemPath>
 | 
						|
        </dependency>
 | 
						|
 | 
						|
        <dependency>
 | 
						|
            <groupId>artemis-http-client</groupId>
 | 
						|
            <artifactId>secutil</artifactId>
 | 
						|
            <version>1.1.3</version>
 | 
						|
            <scope>system</scope>
 | 
						|
            <systemPath>${project.basedir}/src/main/resources/lib/artemis-http-client-1.1.3.jar
 | 
						|
            </systemPath>
 | 
						|
        </dependency>
 | 
						|
        <dependency>
 | 
						|
            <groupId>com.vaadin.external.google</groupId>
 | 
						|
            <artifactId>android-json</artifactId>
 | 
						|
            <version>0.0.20131108.vaadin1</version>
 | 
						|
            <scope>compile</scope>
 | 
						|
        </dependency>
 | 
						|
    </dependencies>
 | 
						|
 | 
						|
    <build>
 | 
						|
        <finalName>${project.artifactId}</finalName>
 | 
						|
        <plugins>
 | 
						|
            <plugin>
 | 
						|
                <groupId>org.springframework.boot</groupId>
 | 
						|
                <artifactId>spring-boot-maven-plugin</artifactId>
 | 
						|
                <configuration>
 | 
						|
                    <includeSystemScope>true</includeSystemScope>
 | 
						|
                </configuration>
 | 
						|
                <version>2.4.2</version>
 | 
						|
                <executions>
 | 
						|
                    <execution>
 | 
						|
                        <goals>
 | 
						|
                            <goal>repackage</goal>
 | 
						|
                        </goals>
 | 
						|
                    </execution>
 | 
						|
                </executions>
 | 
						|
            </plugin>
 | 
						|
        </plugins>
 | 
						|
    </build>
 | 
						|
 | 
						|
</project>
 |