pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>ruoyi</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.8.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>warewms-hard</artifactId>
  12. <version>1.0</version>
  13. <description>硬件对接</description>
  14. <properties>
  15. <local.lib.basedir>${pom.basedir}/../ruoyi-admin/src/main/resources/lib</local.lib.basedir>
  16. </properties>
  17. <dependencies>
  18. <!-- 通用工具-->
  19. <dependency>
  20. <groupId>com.ruoyi</groupId>
  21. <artifactId>ruoyi-common</artifactId>
  22. </dependency>
  23. <!--自定义starter组件-->
  24. <!--自定义starter组件-->
  25. <dependency>
  26. <groupId>com.jwk</groupId>
  27. <artifactId>modbus-spring-boot-starter</artifactId>
  28. <version>1.0</version>
  29. <scope>system</scope>
  30. <systemPath>${local.lib.basedir}/modbus-spring-boot-starter.jar</systemPath>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.jwk</groupId>
  34. <artifactId>rfid-zebra-spring-boot-starter</artifactId>
  35. <version>1.0</version>
  36. <scope>system</scope>
  37. <systemPath>${local.lib.basedir}/rfid-zebra-spring-boot-starter.jar</systemPath>
  38. </dependency>
  39. <!-- rfid-zebra-只能跑在window上-->
  40. <dependency>
  41. <groupId>com.jwk</groupId>
  42. <artifactId>rfid</artifactId>
  43. <version>1.0.0</version>
  44. <scope>system</scope>
  45. <systemPath>${local.lib.basedir}/rfid-1.0.0.jar</systemPath>
  46. </dependency>
  47. <!--modbus4j start-->
  48. <dependency>
  49. <groupId>com.jwk</groupId>
  50. <artifactId>RXTXcomm</artifactId>
  51. <version>3.0.5</version>
  52. <scope>system</scope>
  53. <systemPath>${local.lib.basedir}/RXTXcomm.jar</systemPath>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.jwk</groupId>
  57. <artifactId>modbus4j</artifactId>
  58. <version>3.0.5</version>
  59. <scope>system</scope>
  60. <systemPath>${local.lib.basedir}/modbus4j-3.0.5.jar</systemPath>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.jwk</groupId>
  64. <artifactId>jssc</artifactId>
  65. <version>2.8.0</version>
  66. <scope>system</scope>
  67. <systemPath>${local.lib.basedir}/jssc-2.8.0.jar</systemPath>
  68. </dependency>
  69. <!--modbus4j end-->
  70. </dependencies>
  71. </project>