<?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"> <parent> <artifactId>ruoyi</artifactId> <groupId>com.ruoyi</groupId> <version>3.8.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>warewms-hard</artifactId> <version>1.0</version> <description>硬件对接</description> <properties> <local.lib.basedir>${pom.basedir}/../ruoyi-admin/src/main/resources/lib</local.lib.basedir> </properties> <dependencies> <!-- 若依框架 --> <dependency> <groupId>com.ruoyi</groupId> <artifactId>ruoyi-framework</artifactId> </dependency> <!--自定义starter组件--> <dependency> <groupId>com.jwk</groupId> <artifactId>modbus-spring-boot-starter</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${local.lib.basedir}/modbus-spring-boot-starter.jar</systemPath> </dependency> <dependency> <groupId>com.jwk</groupId> <artifactId>rfid-zebra-spring-boot-starter</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${local.lib.basedir}/rfid-zebra-spring-boot-starter.jar</systemPath> </dependency> <!-- rfid-zebra-只能跑在window上--> <dependency> <groupId>com.jwk</groupId> <artifactId>rfid</artifactId> <version>1.0.0</version> <scope>system</scope> <systemPath>${local.lib.basedir}/rfid-1.0.0.jar</systemPath> </dependency> <!--modbus4j start--> <dependency> <groupId>com.jwk</groupId> <artifactId>RXTXcomm</artifactId> <version>3.0.5</version> <scope>system</scope> <systemPath>${local.lib.basedir}/RXTXcomm.jar</systemPath> </dependency> <dependency> <groupId>com.jwk</groupId> <artifactId>modbus4j</artifactId> <version>3.0.5</version> <scope>system</scope> <systemPath>${local.lib.basedir}/modbus4j-3.0.5.jar</systemPath> </dependency> <dependency> <groupId>com.jwk</groupId> <artifactId>jssc</artifactId> <version>2.8.0</version> <scope>system</scope> <systemPath>${local.lib.basedir}/jssc-2.8.0.jar</systemPath> </dependency> <!--modbus4j end--> </dependencies> </project>