pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.hfln.portal</groupId>
  6. <artifactId>hfln-portal-service</artifactId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. <relativePath>../pom.xml</relativePath>
  9. </parent>
  10. <artifactId>portal-service-infrastructure</artifactId>
  11. <packaging>jar</packaging>
  12. <name>portal-service-infrastructure</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.hfln.portal</groupId>
  16. <artifactId>portal-service-domain</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>mysql</groupId>
  20. <artifactId>mysql-connector-java</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-test</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.hfln.framework</groupId>
  28. <artifactId>hfln-framework-exception</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>cn.hfln.framework</groupId>
  32. <artifactId>knife4j-doc-spring-boot-starter</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.mapstruct</groupId>
  36. <artifactId>mapstruct</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.projectlombok</groupId>
  40. <artifactId>lombok</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.mapstruct</groupId>
  44. <artifactId>mapstruct-processor</artifactId>
  45. </dependency>
  46. <!-- Sa-Token 权限认证,在线文档:https://sa-token.cc -->
  47. <dependency>
  48. <groupId>cn.dev33</groupId>
  49. <artifactId>sa-token-spring-boot-starter</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>cn.dev33</groupId>
  53. <artifactId>sa-token-redis-template</artifactId>
  54. </dependency>
  55. <!-- websocket -->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-websocket</artifactId>
  59. </dependency>
  60. <!-- oss存储 -->
  61. <dependency>
  62. <groupId>com.aliyun.oss</groupId>
  63. <artifactId>aliyun-sdk-oss</artifactId>
  64. </dependency>
  65. <!-- 微信 -->
  66. <dependency>
  67. <groupId>com.github.binarywang</groupId>
  68. <artifactId>weixin-java-mp</artifactId>
  69. </dependency>
  70. <!-- Spring Integration MQTT -->
  71. <dependency>
  72. <groupId>org.springframework.integration</groupId>
  73. <artifactId>spring-integration-mqtt</artifactId>
  74. </dependency>
  75. <!-- EasyExcel 核心依赖 -->
  76. <dependency>
  77. <groupId>com.alibaba</groupId>
  78. <artifactId>easyexcel</artifactId>
  79. </dependency>
  80. </dependencies>
  81. <build>
  82. <pluginManagement>
  83. <plugins>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-compiler-plugin</artifactId>
  87. <version>3.10.0</version>
  88. <configuration>
  89. <source>1.8</source>
  90. <target>1.8</target>
  91. <annotationProcessorPaths>
  92. <path>
  93. <groupId>org.mapstruct</groupId>
  94. <artifactId>mapstruct-processor</artifactId>
  95. <version>1.5.3.Final</version>
  96. </path>
  97. <path>
  98. <groupId>org.projectlombok</groupId>
  99. <artifactId>lombok</artifactId>
  100. <version>1.18.38</version>
  101. </path>
  102. <path>
  103. <groupId>org.projectlombok</groupId>
  104. <artifactId>lombok-mapstruct-binding</artifactId>
  105. <version>0.2.0</version>
  106. </path>
  107. </annotationProcessorPaths>
  108. </configuration>
  109. </plugin>
  110. </plugins>
  111. </pluginManagement>
  112. </build>
  113. </project>