pom.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. <dependencies>
  15. <!-- 若依框架 -->
  16. <dependency>
  17. <groupId>com.ruoyi</groupId>
  18. <artifactId>ruoyi-framework</artifactId>
  19. </dependency>
  20. <!--自定义starter组件-->
  21. <dependency>
  22. <groupId>com.jwk</groupId>
  23. <artifactId>modbus-spring-boot-starter</artifactId>
  24. <version>1.0</version>
  25. <scope>system</scope>
  26. <systemPath>${pom.basedir}/src/main/resources/lib/modbus-spring-boot-starter.jar</systemPath>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.jwk</groupId>
  30. <artifactId>rfid-zebra-spring-boot-starter</artifactId>
  31. <version>1.0</version>
  32. <scope>system</scope>
  33. <systemPath>${pom.basedir}/src/main/resources/lib/rfid-zebra-spring-boot-starter.jar</systemPath>
  34. </dependency>
  35. <!-- rfid-zebra-只能跑在window上-->
  36. <dependency>
  37. <groupId>com.warewms</groupId>
  38. <artifactId>rfid</artifactId>
  39. <version>1.0.0</version>
  40. <scope>system</scope>
  41. <systemPath>${pom.basedir}/src/main/resources/lib/rfid-1.0.0.jar</systemPath>
  42. </dependency>
  43. <!--modbus4j start-->
  44. <dependency>
  45. <groupId>com.jwk</groupId>
  46. <artifactId>RXTXcomm</artifactId>
  47. <version>3.0.5</version>
  48. <scope>system</scope>
  49. <systemPath>${pom.basedir}/src/main/resources/lib/RXTXcomm.jar</systemPath>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.jwk</groupId>
  53. <artifactId>modbus4j</artifactId>
  54. <version>3.0.5</version>
  55. <scope>system</scope>
  56. <systemPath>${pom.basedir}/src/main/resources/lib/modbus4j-3.0.5.jar</systemPath>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.jwk</groupId>
  60. <artifactId>jssc</artifactId>
  61. <version>2.8.0</version>
  62. <scope>system</scope>
  63. <systemPath>${pom.basedir}/src/main/resources/lib/jssc-2.8.0.jar</systemPath>
  64. </dependency>
  65. <!--modbus4j end-->
  66. </dependencies>
  67. </project>