pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  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. <parent>
  6. <artifactId>tofly-common</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common-es</artifactId>
  12. <version>1.0.0</version>
  13. <groupId>com.tofly</groupId>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.data</groupId>
  17. <artifactId>spring-data-elasticsearch</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.tofly</groupId>
  21. <artifactId>common-core</artifactId>
  22. <version>1.0.0</version>
  23. </dependency>
  24. </dependencies>
  25. <distributionManagement>
  26. <repository>
  27. <id>nexus-releases</id>
  28. <name>Nexus Release Repository</name>
  29. <url>http://192.168.2.231:8081/nexus/content/repositories/thirdparty</url>
  30. </repository>
  31. </distributionManagement>
  32. </project>