|
@@ -13,6 +13,10 @@
|
|
|
<artifactId>warewms-admin</artifactId>
|
|
|
<description>web application</description>
|
|
|
|
|
|
+ <properties>
|
|
|
+ <local.lib.basedir>${pom.basedir}/src/main/resources/lib</local.lib.basedir>
|
|
|
+ </properties>
|
|
|
+
|
|
|
<dependencies>
|
|
|
<!-- Mysql驱动包 -->
|
|
|
<dependency>
|
|
@@ -37,6 +41,54 @@
|
|
|
<groupId>com.warewms</groupId>
|
|
|
<artifactId>warewms-generator</artifactId>
|
|
|
</dependency>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <!--硬件Jar集成,自定义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>
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|