pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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>module_cmms</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.jeecgframework.boot</groupId>
  15. <artifactId>module_base</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.jeecgframework.boot</groupId>
  19. <artifactId>jeecg-boot-base-core</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.jeecgframework.boot</groupId>
  23. <artifactId>module_tpm</artifactId>
  24. </dependency>
  25. <!-- mapstruct -->
  26. <dependency>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok-mapstruct-binding</artifactId>
  29. <version>0.2.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.mapstruct</groupId>
  33. <artifactId>mapstruct</artifactId>
  34. <version>${mapstruct.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mapstruct</groupId>
  38. <artifactId>mapstruct-processor</artifactId>
  39. <version>${mapstruct.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.jeecgframework.boot</groupId>
  43. <artifactId>jeecg-system-biz</artifactId>
  44. </dependency>
  45. </dependencies>
  46. <properties>
  47. <!-- 版本依赖 -->
  48. <mapstruct.version>1.4.2.Final</mapstruct.version>
  49. <maven.compiler.source>8</maven.compiler.source>
  50. <maven.compiler.target>8</maven.compiler.target>
  51. </properties>
  52. </project>