pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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>warewms</artifactId>
  7. <groupId>com.warewms</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>warewms-hard</artifactId>
  12. <version>1.0.0</version>
  13. <description>硬件对接</description>
  14. <properties>
  15. <local.lib.basedir>${pom.basedir}/../warewms-ams/src/main/resources/lib</local.lib.basedir>
  16. </properties>
  17. <dependencies>
  18. <!-- SpringBoot Web容器 -->
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.projectlombok</groupId>
  25. <artifactId>lombok</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>cn.hutool</groupId>
  29. <artifactId>hutool-all</artifactId>
  30. </dependency>
  31. <!--自定义starter组件-->
  32. <dependency>
  33. <groupId>com.jwk</groupId>
  34. <artifactId>modbus-spring-boot-starter</artifactId>
  35. <version>1.0</version>
  36. <scope>system</scope>
  37. <systemPath>${local.lib.basedir}/modbus-spring-boot-starter.jar</systemPath>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.jwk</groupId>
  41. <artifactId>rfid-zebra-spring-boot-starter</artifactId>
  42. <version>1.0</version>
  43. <scope>system</scope>
  44. <systemPath>${local.lib.basedir}/rfid-zebra-spring-boot-starter.jar</systemPath>
  45. </dependency>
  46. <!-- rfid-zebra-只能跑在window上-->
  47. <dependency>
  48. <groupId>com.jwk</groupId>
  49. <artifactId>rfid</artifactId>
  50. <version>1.0.0</version>
  51. <scope>system</scope>
  52. <systemPath>${local.lib.basedir}/rfid-1.0.0.jar</systemPath>
  53. </dependency>
  54. <!--modbus4j start-->
  55. <dependency>
  56. <groupId>com.jwk</groupId>
  57. <artifactId>RXTXcomm</artifactId>
  58. <version>3.0.5</version>
  59. <scope>system</scope>
  60. <systemPath>${local.lib.basedir}/RXTXcomm.jar</systemPath>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.jwk</groupId>
  64. <artifactId>modbus4j</artifactId>
  65. <version>3.0.5</version>
  66. <scope>system</scope>
  67. <systemPath>${local.lib.basedir}/modbus4j-3.0.5.jar</systemPath>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.jwk</groupId>
  71. <artifactId>jssc</artifactId>
  72. <version>2.8.0</version>
  73. <scope>system</scope>
  74. <systemPath>${local.lib.basedir}/jssc-2.8.0.jar</systemPath>
  75. </dependency>
  76. <!--modbus4j end-->
  77. </dependencies>
  78. </project>