pom.xml 894 B

12345678910111213141516171819202122232425
  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-es</artifactId>
  9. <version>1.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>storlead-es-spi</artifactId>
  13. <packaging>jar</packaging>
  14. <name>storlead-es-spi</name>
  15. <description>ES 域对外契约:跨模块调用的 Service 接口。</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.storlead.boot</groupId>
  19. <artifactId>storlead-es-core</artifactId>
  20. </dependency>
  21. </dependencies>
  22. </project>