pom.xml 2.7 KB

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