123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?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>warewms</artifactId>
- <groupId>com.warewms</groupId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>warewms-hard</artifactId>
- <version>1.0.0</version>
- <description>硬件对接</description>
- <properties>
- <local.lib.basedir>${pom.basedir}/../warewms-ams/src/main/resources/lib</local.lib.basedir>
- </properties>
- <dependencies>
- <!-- SpringBoot Web容器 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</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>
|