pom.xml 997 B

123456789101112131415161718192021222324252627282930313233
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.github.stuxuhai</groupId>
  6. <artifactId>hdata</artifactId>
  7. <version>0.2.8</version>
  8. </parent>
  9. <artifactId>hdata-mongodb</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.github.stuxuhai</groupId>
  13. <artifactId>hdata-api</artifactId>
  14. <scope>provided</scope>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.mongodb</groupId>
  18. <artifactId>mongo-java-driver</artifactId>
  19. <version>2.12.4</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.google.guava</groupId>
  23. <artifactId>guava</artifactId>
  24. <scope>provided</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.apache.commons</groupId>
  28. <artifactId>commons-lang3</artifactId>
  29. <version>3.4</version>
  30. </dependency>
  31. </dependencies>
  32. </project>