金币系统后端
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.

104 lines
3.4 KiB

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