pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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-customer</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <!-- 业务模块 -->
  40. <dependency>
  41. <groupId>com.storlead.boot</groupId>
  42. <artifactId>storlead-user-spi</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.storlead.boot</groupId>
  46. <artifactId>storlead-sms-spi</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.storlead.boot</groupId>
  50. <artifactId>storlead-system-biz</artifactId>
  51. </dependency>
  52. <!-- UserServiceImpl 等依赖 ThirdPartyUserSyncService,默认实现见 storlead-thirdparty-biz -->
  53. <dependency>
  54. <groupId>com.storlead.boot</groupId>
  55. <artifactId>storlead-thirdparty-biz</artifactId>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>