pom.xml 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  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-wit</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>com.github.stuxuhai</groupId>
  18. <artifactId>hdata-core</artifactId>
  19. <scope>provided</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.slf4j</groupId>
  23. <artifactId>slf4j-api</artifactId>
  24. <version>${slf4j.version}</version>
  25. <scope>provided</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.febit.wit</groupId>
  29. <artifactId>wit-core</artifactId>
  30. <version>${wit.version}</version>
  31. </dependency>
  32. </dependencies>
  33. </project>