pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. </dependencies>
  54. </project>