pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.tourism</groupId>
  6. <artifactId>tourism_platform</artifactId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>application-webadmin</artifactId>
  11. <version>1.0.0</version>
  12. <name>application-webadmin</name>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <!-- 业务组件依赖 -->
  16. <dependency>
  17. <groupId>com.tourism</groupId>
  18. <artifactId>common-satoken</artifactId>
  19. <version>1.0.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.tourism</groupId>
  23. <artifactId>common-ext</artifactId>
  24. <version>1.0.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.tourism</groupId>
  28. <artifactId>common-redis</artifactId>
  29. <version>1.0.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.tourism</groupId>
  33. <artifactId>common-mobile</artifactId>
  34. <version>1.0.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.tourism</groupId>
  38. <artifactId>common-report</artifactId>
  39. <version>1.0.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.tourism</groupId>
  43. <artifactId>common-online</artifactId>
  44. <version>1.0.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.tourism</groupId>
  48. <artifactId>common-flow-online</artifactId>
  49. <version>1.0.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.tourism</groupId>
  53. <artifactId>common-log</artifactId>
  54. <version>1.0.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.tourism</groupId>
  58. <artifactId>common-huaweicloud-obs</artifactId>
  59. <version>1.0.0</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.tourism</groupId>
  63. <artifactId>common-huaweicloud-moderation</artifactId>
  64. <version>1.0.0</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.tourism</groupId>
  68. <artifactId>common-sequence</artifactId>
  69. <version>1.0.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.tourism</groupId>
  73. <artifactId>common-datafilter</artifactId>
  74. <version>1.0.0</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.tourism</groupId>
  78. <artifactId>common-swagger</artifactId>
  79. <version>1.0.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.tourism</groupId>
  83. <artifactId>common-dict</artifactId>
  84. <version>1.0.0</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.tourism</groupId>
  88. <artifactId>common-additional</artifactId>
  89. <version>1.0.0</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>javax.annotation</groupId>
  93. <artifactId>javax.annotation-api</artifactId>
  94. <version>1.3</version>
  95. </dependency>
  96. <!-- <dependency>-->
  97. <!-- <groupId>org.dromara.sms4j</groupId>-->
  98. <!-- <artifactId>sms4j-spring-boot-starter</artifactId>-->
  99. <!-- <version>3.3.3</version>-->
  100. <!-- </dependency>-->
  101. <dependency>
  102. <groupId>com.github.binarywang</groupId>
  103. <artifactId>wx-java-miniapp-spring-boot-starter</artifactId> <!-- 微信登录(小程序) -->
  104. <version>4.6.0</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.volcengine</groupId>
  108. <artifactId>volc-sdk-java</artifactId>
  109. <version>1.0.105</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.ibm.icu</groupId>
  113. <artifactId>icu4j</artifactId>
  114. <version>69.1</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>commons-codec</groupId>
  118. <artifactId>commons-codec</artifactId>
  119. <version>1.15</version> <!-- 请根据实际情况调整版本号 -->
  120. </dependency>
  121. <dependency>
  122. <groupId>org.jsoup</groupId>
  123. <artifactId>jsoup</artifactId>
  124. <version>1.14.3</version>
  125. </dependency>
  126. <!-- <dependency>-->
  127. <!-- <groupId>com.anji-plus</groupId>-->
  128. <!-- <artifactId>spring-boot-starter-captcha</artifactId>-->
  129. <!-- <version>1.3.0</version>-->
  130. <!-- <scope>compile</scope>-->
  131. <!-- </dependency>-->
  132. </dependencies>
  133. <build>
  134. <plugins>
  135. <plugin>
  136. <groupId>org.springframework.boot</groupId>
  137. <artifactId>spring-boot-maven-plugin</artifactId>
  138. <version>${spring-boot.version}</version>
  139. <executions>
  140. <execution>
  141. <goals>
  142. <goal>repackage</goal>
  143. </goals>
  144. </execution>
  145. </executions>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. </project>