You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

140 lines
4.3 KiB

6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.example</groupId>
  6. <artifactId>demo</artifactId>
  7. <version>0.0.1</version>
  8. <name>demo</name>
  9. <description>demo</description>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>3.3.6</version>
  14. </parent>
  15. <packaging>pom</packaging>
  16. <modules>
  17. <module>recharge</module>
  18. <module>commons</module>
  19. <module>user</module>
  20. <module>audit</module>
  21. <module>statistics</module>
  22. <module>consume</module>
  23. <module>refund</module>
  24. <module>admin</module>
  25. </modules>
  26. <properties>
  27. <java.version>21</java.version>
  28. <spring-boot.version>3.3.6</spring-boot.version>
  29. <dubbo.version>3.3.0-beta.2</dubbo.version>
  30. </properties>
  31. <dependencies>
  32. <dependency>
  33. <groupId>com.101tec</groupId>
  34. <artifactId>zkclient</artifactId>
  35. <version>0.11</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.jsonwebtoken</groupId>
  39. <artifactId>jjwt</artifactId>
  40. <version>0.9.1</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>javax.xml.bind</groupId>
  44. <artifactId>jaxb-api</artifactId>
  45. <version>2.3.1</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-security</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-data-redis</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.github.pagehelper</groupId>
  61. <artifactId>pagehelper-spring-boot-starter</artifactId>
  62. <version>1.4.6</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.slf4j</groupId>
  66. <artifactId>slf4j-simple</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-web</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.projectlombok</groupId>
  78. <artifactId>lombok</artifactId>
  79. <optional>true</optional>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-test</artifactId>
  84. <scope>test</scope>
  85. </dependency>
  86. </dependencies>
  87. <dependencyManagement>
  88. <dependencies>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-dependencies</artifactId>
  92. <version>${spring-boot.version}</version>
  93. <type>pom</type>
  94. <scope>import</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter</artifactId>
  99. <version>${spring-boot.version}</version>
  100. <exclusions>
  101. <exclusion>
  102. <artifactId>spring-boot-starter-logging</artifactId>
  103. <groupId>org.springframework.boot</groupId>
  104. </exclusion>
  105. </exclusions>
  106. </dependency>
  107. </dependencies>
  108. </dependencyManagement>
  109. <build>
  110. <plugins>
  111. <plugin>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-maven-plugin</artifactId>
  114. </plugin>
  115. </plugins>
  116. </build>
  117. </project>