pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <dependency>
  45. <groupId>io.swagger</groupId>
  46. <artifactId>swagger-annotations</artifactId>
  47. </dependency>
  48. <!-- 业务模块 -->
  49. <dependency>
  50. <groupId>com.storlead.boot</groupId>
  51. <artifactId>storlead-user-spi</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.storlead.boot</groupId>
  55. <artifactId>storlead-sms-spi</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.storlead.boot</groupId>
  59. <artifactId>storlead-system-biz</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.storlead.boot</groupId>
  63. <artifactId>storlead-system-api</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.storlead.boot</groupId>
  67. <artifactId>storlead-knowledge-api</artifactId>
  68. </dependency>
  69. <!-- UserServiceImpl 等依赖 ThirdPartyUserSyncService,默认实现见 storlead-thirdparty-biz -->
  70. <dependency>
  71. <groupId>com.storlead.boot</groupId>
  72. <artifactId>storlead-thirdparty-biz</artifactId>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <plugins>
  77. <plugin>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-maven-plugin</artifactId>
  80. <configuration>
  81. <mainClass>com.storlead.StorleadTradeApplication</mainClass>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. </project>