pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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-message</artifactId>
  13. <packaging>pom</packaging>
  14. <name>storlead-message</name>
  15. <description>消息域聚合模块</description>
  16. <modules>
  17. <module>storlead-message-core</module>
  18. <module>storlead-message-spi</module>
  19. <module>storlead-message-biz</module>
  20. <module>storlead-message-api</module>
  21. </modules>
  22. <dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>com.storlead.boot</groupId>
  26. <artifactId>storlead-message-core</artifactId>
  27. <version>${project.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.storlead.boot</groupId>
  31. <artifactId>storlead-message-spi</artifactId>
  32. <version>${project.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.storlead.boot</groupId>
  36. <artifactId>storlead-message-biz</artifactId>
  37. <version>${project.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.storlead.boot</groupId>
  41. <artifactId>storlead-message-api</artifactId>
  42. <version>${project.version}</version>
  43. </dependency>
  44. </dependencies>
  45. </dependencyManagement>
  46. </project>