pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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-sasa</artifactId>
  9. <version>1.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>storlead-sales</artifactId>
  13. <packaging>jar</packaging>
  14. <name>${project.artifactId}</name>
  15. <properties>
  16. <maven.compiler.source>17</maven.compiler.source>
  17. <maven.compiler.target>17</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.storlead.boot</groupId>
  23. <artifactId>storlead-common</artifactId>
  24. </dependency>
  25. <!-- 与 storlead-marketing 等一致:聚合 Web + storlead-mybatis(MySQL / MyBatis-Plus / Druid)+ storlead-redis + storlead-core -->
  26. <dependency>
  27. <groupId>com.storlead.boot</groupId>
  28. <artifactId>storlead-web</artifactId>
  29. </dependency>
  30. <!-- 定时任务大量使用 org.quartz(原 pom 未引入,单独编译会缺类) -->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-quartz</artifactId>
  34. </dependency>
  35. <!-- Controller 中 com.storlead.user.* -->
  36. <dependency>
  37. <groupId>com.storlead.boot</groupId>
  38. <artifactId>storlead-user-spi</artifactId>
  39. </dependency>
  40. <!-- Controller 中 com.storlead.system.* -->
  41. <dependency>
  42. <groupId>com.storlead.boot</groupId>
  43. <artifactId>storlead-system-spi</artifactId>
  44. </dependency>
  45. <!-- message 相关 Controller / TestApiController -->
  46. <dependency>
  47. <groupId>com.storlead.boot</groupId>
  48. <artifactId>storlead-message-biz</artifactId>
  49. </dependency>
  50. <!-- ES 客户相似度:编译期 spi+core;运行时 biz 提供实现(未启用 ES 时为 Noop) -->
  51. <dependency>
  52. <groupId>com.storlead.boot</groupId>
  53. <artifactId>storlead-es-spi</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.storlead.boot</groupId>
  57. <artifactId>storlead-es-core</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.storlead.boot</groupId>
  61. <artifactId>storlead-es-biz</artifactId>
  62. </dependency>
  63. <!-- 邮件域:api 含 biz/spi/core;CRM 邮件 Controller 仍在本模块 -->
  64. <dependency>
  65. <groupId>com.storlead.boot</groupId>
  66. <artifactId>storlead-mail-api</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.storlead.boot</groupId>
  70. <artifactId>storlead-mail-spi</artifactId>
  71. </dependency>
  72. </dependencies>
  73. </project>