pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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>tzy</artifactId>
  7. <groupId>com.tzy</groupId>
  8. <version>4.5.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>tzy-system</artifactId>
  12. <description>
  13. system系统模块
  14. </description>
  15. <dependencies>
  16. <!-- mq -->
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-amqp</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.alibaba</groupId>
  23. <artifactId>easyexcel</artifactId>
  24. <version>3.3.2</version>
  25. </dependency>
  26. <!--lombok-->
  27. <dependency>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. </dependency>
  31. <!-- 通用工具-->
  32. <dependency>
  33. <groupId>com.tzy</groupId>
  34. <artifactId>tzy-common</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.swagger</groupId>
  38. <artifactId>swagger-annotations</artifactId>
  39. <version>1.5.21</version>
  40. <scope>compile</scope>
  41. </dependency>
  42. </dependencies>
  43. </project>