pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.storlead.boot</groupId>
  8. <artifactId>storlead-saas-platform</artifactId>
  9. <version>1.0</version>
  10. <relativePath>../../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>storlead-api</artifactId>
  13. <name>storlead-api</name>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.storlead.boot</groupId>
  17. <artifactId>storlead-common</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.storlead.boot</groupId>
  21. <artifactId>storlead-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.storlead.boot</groupId>
  25. <artifactId>storlead-user-api</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.storlead.boot</groupId>
  29. <artifactId>storlead-sms-api</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.storlead.boot</groupId>
  33. <artifactId>storlead-trade</artifactId>
  34. <version>1.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.storlead.boot</groupId>
  38. <artifactId>storlead-sales</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-web</artifactId>
  43. </dependency>
  44. <!-- 业务模块 -->
  45. <dependency>
  46. <groupId>com.storlead.boot</groupId>
  47. <artifactId>storlead-user-spi</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.storlead.boot</groupId>
  51. <artifactId>storlead-sms-spi</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.storlead.boot</groupId>
  55. <artifactId>storlead-system-biz</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.storlead.boot</groupId>
  59. <artifactId>storlead-system-api</artifactId>
  60. </dependency>
  61. <!-- UserServiceImpl 等依赖 ThirdPartyUserSyncService,默认实现见 storlead-thirdparty-biz -->
  62. <dependency>
  63. <groupId>com.storlead.boot</groupId>
  64. <artifactId>storlead-thirdparty-biz</artifactId>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. </project>