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.

112 lines
3.7 KiB

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>Admin</module>
  22. </modules>
  23. <properties>
  24. <java.version>21</java.version>
  25. <spring-boot.version>3.3.6</spring-boot.version>
  26. <dubbo.version>3.3.0-beta.2</dubbo.version>
  27. <seata.version>2.0.0</seata.version>
  28. </properties>
  29. <dependencies>
  30. <dependency>
  31. <groupId>com.github.pagehelper</groupId>
  32. <artifactId>pagehelper-spring-boot-starter</artifactId>
  33. <version>1.4.6</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.slf4j</groupId>
  37. <artifactId>slf4j-simple</artifactId>
  38. <version>2.0.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.projectlombok</groupId>
  42. <artifactId>lombok</artifactId>
  43. <optional>true</optional>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-web</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot
  51. </groupId>
  52. <artifactId>spring-boot-starter-security</artifactId>
  53. </dependency>
  54. </dependencies>
  55. <dependencyManagement>
  56. <dependencies>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-dependencies</artifactId>
  60. <version>${spring-boot.version}</version>
  61. <type>pom</type>
  62. <scope>import</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter</artifactId>
  67. <version>${spring-boot.version}</version>
  68. <exclusions>
  69. <exclusion>
  70. <artifactId>spring-boot-starter-logging</artifactId>
  71. <groupId>org.springframework.boot</groupId>
  72. </exclusion>
  73. </exclusions>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.dubbo</groupId>
  77. <artifactId>dubbo-bom</artifactId>
  78. <version>${dubbo.version}</version>
  79. <type>pom</type>
  80. <scope>import</scope>
  81. </dependency>
  82. </dependencies>
  83. </dependencyManagement>
  84. <build>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-maven-plugin</artifactId>
  89. <configuration>
  90. <excludes>
  91. <exclude>
  92. <groupId>org.projectlombok</groupId>
  93. <artifactId>lombok</artifactId>
  94. </exclude>
  95. </excludes>
  96. </configuration>
  97. </plugin>
  98. </plugins>
  99. </build>
  100. </project>