pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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>jeecg-boot-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>3.4.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-module-interlock</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. <!-- mapstruct版本依赖 -->
  16. <mapstruct.version>1.4.2.Final</mapstruct.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.postgresql</groupId>
  21. <artifactId>postgresql</artifactId>
  22. <version>42.5.0</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.jeecgframework.boot</groupId>
  26. <artifactId>jeecg-boot-base-core</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.zendesk</groupId>
  30. <artifactId>mysql-binlog-connector-java</artifactId>
  31. <version>0.27.1</version> <!--2022.09.17版的-->
  32. </dependency>
  33. <!-- mapstruct -->
  34. <dependency>
  35. <groupId>org.projectlombok</groupId>
  36. <artifactId>lombok-mapstruct-binding</artifactId>
  37. <version>0.2.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.mapstruct</groupId>
  41. <artifactId>mapstruct</artifactId>
  42. <version>${mapstruct.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.mapstruct</groupId>
  46. <artifactId>mapstruct-processor</artifactId>
  47. <version>${mapstruct.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.jeecgframework.boot</groupId>
  51. <artifactId>jeecg-system-biz</artifactId>
  52. </dependency>
  53. <!--mqtt -->
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-integration</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.integration</groupId>
  60. <artifactId>spring-integration-stream</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.integration</groupId>
  64. <artifactId>spring-integration-mqtt</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-configuration-processor</artifactId>
  69. <optional>true</optional>
  70. </dependency>
  71. </dependencies>
  72. </project>