pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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>org.mapstruct</groupId>
  32. <artifactId>mapstruct</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.projectlombok</groupId>
  36. <artifactId>lombok</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.mapstruct</groupId>
  40. <artifactId>mapstruct-processor</artifactId>
  41. </dependency>
  42. <!-- Sa-Token 权限认证,在线文档:https://sa-token.cc -->
  43. <dependency>
  44. <groupId>cn.dev33</groupId>
  45. <artifactId>sa-token-spring-boot-starter</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>cn.dev33</groupId>
  49. <artifactId>sa-token-redis-template</artifactId>
  50. </dependency>
  51. <!-- websocket -->
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-websocket</artifactId>
  55. </dependency>
  56. <!-- oss存储 -->
  57. <dependency>
  58. <groupId>com.aliyun.oss</groupId>
  59. <artifactId>aliyun-sdk-oss</artifactId>
  60. </dependency>
  61. <!-- 微信 -->
  62. <dependency>
  63. <groupId>com.github.binarywang</groupId>
  64. <artifactId>weixin-java-mp</artifactId>
  65. </dependency>
  66. <!-- Spring Integration MQTT -->
  67. <dependency>
  68. <groupId>org.springframework.integration</groupId>
  69. <artifactId>spring-integration-mqtt</artifactId>
  70. </dependency>
  71. <!-- EasyExcel 核心依赖 -->
  72. <dependency>
  73. <groupId>com.alibaba</groupId>
  74. <artifactId>easyexcel</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>cn.hfln.framework</groupId>
  78. <artifactId>knife4j-doc-spring-boot-starter</artifactId>
  79. <version>1.0.0-SNAPSHOT</version>
  80. <scope>compile</scope>
  81. </dependency>
  82. </dependencies>
  83. <build>
  84. <pluginManagement>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.apache.maven.plugins</groupId>
  88. <artifactId>maven-compiler-plugin</artifactId>
  89. <version>3.10.0</version>
  90. <configuration>
  91. <source>1.8</source>
  92. <target>1.8</target>
  93. <annotationProcessorPaths>
  94. <path>
  95. <groupId>org.mapstruct</groupId>
  96. <artifactId>mapstruct-processor</artifactId>
  97. <version>1.5.3.Final</version>
  98. </path>
  99. <path>
  100. <groupId>org.projectlombok</groupId>
  101. <artifactId>lombok</artifactId>
  102. <version>1.18.38</version>
  103. </path>
  104. <path>
  105. <groupId>org.projectlombok</groupId>
  106. <artifactId>lombok-mapstruct-binding</artifactId>
  107. <version>0.2.0</version>
  108. </path>
  109. </annotationProcessorPaths>
  110. </configuration>
  111. </plugin>
  112. </plugins>
  113. </pluginManagement>
  114. </build>
  115. </project>