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.

105 lines
3.5 KiB

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