[关闭]
@wxf 2017-06-03T10:53:18.000000Z 字数 1742 阅读 621

system-utils项目的pom.xml

其他


  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. <parent>
  4. <artifactId>system-parent</artifactId>
  5. <groupId>com.wxf</groupId>
  6. <version>1.0-SNAPSHOT</version>
  7. <relativePath>../system-parent/pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>system-utils</artifactId>
  11. <packaging>jar</packaging>
  12. <name>system-utils</name>
  13. <url>http://maven.apache.org</url>
  14. <dependencies>
  15. <!-- 单元测试 -->
  16. <dependency>
  17. <groupId>junit</groupId>
  18. <artifactId>junit</artifactId>
  19. <scope>test</scope>
  20. </dependency>
  21. <!-- 时间操作组件 -->
  22. <dependency>
  23. <groupId>joda-time</groupId>
  24. <artifactId>joda-time</artifactId>
  25. </dependency>
  26. <!-- Apache工具组件 -->
  27. <dependency>
  28. <groupId>org.apache.commons</groupId>
  29. <artifactId>commons-lang3</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.commons</groupId>
  33. <artifactId>commons-io</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>commons-net</groupId>
  37. <artifactId>commons-net</artifactId>
  38. </dependency>
  39. <!-- Jackson Json处理工具包 -->
  40. <dependency>
  41. <groupId>com.fasterxml.jackson.core</groupId>
  42. <artifactId>jackson-databind</artifactId>
  43. </dependency>
  44. <!-- httpclient -->
  45. <dependency>
  46. <groupId>org.apache.httpcomponents</groupId>
  47. <artifactId>httpclient</artifactId>
  48. </dependency>
  49. <!-- 日志处理 -->
  50. <dependency>
  51. <groupId>org.slf4j</groupId>
  52. <artifactId>slf4j-log4j12</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>javax.servlet</groupId>
  56. <artifactId>servlet-api</artifactId>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>javax.servlet</groupId>
  61. <artifactId>jsp-api</artifactId>
  62. <scope>provided</scope>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <finalName>${project.artifactId}</finalName>
  67. </build>
  68. </project>
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注