.flattened-pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.jeesharp.boot</groupId>
  7. <artifactId>jeesharp-business</artifactId>
  8. <version>3.0.1-Beta-21</version>
  9. </parent>
  10. <groupId>org.jeesharp.boot</groupId>
  11. <artifactId>business-mobile-gateway</artifactId>
  12. <version>3.0.1-Beta-21</version>
  13. <description>移动端网关 - 为APP/小程序/H5提供统一接口</description>
  14. <properties>
  15. <maven.compiler.target>21</maven.compiler.target>
  16. <maven.compiler.source>21</maven.compiler.source>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.jeesharp.boot</groupId>
  22. <artifactId>jeesharp-core</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.jeesharp.boot</groupId>
  26. <artifactId>jeesharp-spring-boot-starter-member-auth</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.jeesharp.boot</groupId>
  30. <artifactId>jeesharp-spring-boot-starter-security</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.jeesharp.boot</groupId>
  34. <artifactId>business-member-bean</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.jeesharp.boot</groupId>
  38. <artifactId>business-member-application</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springdoc</groupId>
  42. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-validation</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-data-redis</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.jeesharp.boot</groupId>
  54. <artifactId>jeesharp-spring-boot-starter-sms</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.jeesharp.boot</groupId>
  58. <artifactId>jeesharp-spring-boot-starter-mail</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.micrometer</groupId>
  62. <artifactId>micrometer-core</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>cn.hutool</groupId>
  66. <artifactId>hutool-all</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. <scope>provided</scope>
  72. </dependency>
  73. </dependencies>
  74. </project>