pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.xtframe.jdc</groupId>
  6. <artifactId>project</artifactId>
  7. <version>1.0.11-SNAPSHOT</version>
  8. <relativePath>../../</relativePath>
  9. </parent>
  10. <artifactId>io</artifactId>
  11. <name>框架IO包</name>
  12. <description>提供各种输入输出通用方法,如RTX接口、短信接口、http接口调用等</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.apache.httpcomponents</groupId>
  16. <artifactId>httpclient</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>javax.servlet</groupId>
  20. <artifactId>servlet-api</artifactId>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.poi</groupId>
  25. <artifactId>poi</artifactId>
  26. <version>3.9</version>
  27. <optional>true</optional>
  28. </dependency>
  29. <dependency>
  30. <groupId>net.sf.json-lib</groupId>
  31. <artifactId>json-lib</artifactId>
  32. <classifier>jdk15</classifier>
  33. </dependency>
  34. <!-- log -->
  35. <dependency>
  36. <groupId>org.slf4j</groupId>
  37. <artifactId>slf4j-api</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>junit</groupId>
  41. <artifactId>junit</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.xtframe.jdc</groupId>
  45. <artifactId>util</artifactId>
  46. </dependency>
  47. </dependencies>
  48. </project>