pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.example</groupId>
  7. <artifactId>file-move-tool</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <org.apache.httpcomponents.version>4.5.5</org.apache.httpcomponents.version>
  11. </properties>
  12. <dependencies>
  13. <!-- log -->
  14. <dependency>
  15. <groupId>org.slf4j</groupId>
  16. <artifactId>slf4j-log4j12</artifactId>
  17. <version>1.7.25</version>
  18. </dependency>
  19. <!-- json -->
  20. <dependency>
  21. <groupId>com.alibaba</groupId>
  22. <artifactId>fastjson</artifactId>
  23. <version>1.2.47</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.httpcomponents</groupId>
  27. <artifactId>httpclient</artifactId>
  28. <version>${org.apache.httpcomponents.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.httpcomponents</groupId>
  32. <artifactId>httpclient-cache</artifactId>
  33. <version>${org.apache.httpcomponents.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.httpcomponents</groupId>
  37. <artifactId>httpclient-win</artifactId>
  38. <version>${org.apache.httpcomponents.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.httpcomponents</groupId>
  42. <artifactId>httpmime</artifactId>
  43. <version>${org.apache.httpcomponents.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.httpcomponents</groupId>
  47. <artifactId>httpcore</artifactId>
  48. <version>4.4.9</version>
  49. </dependency>
  50. </dependencies>
  51. <repositories>
  52. <repository>
  53. <id>alimaven</id>
  54. <name>aliyun maven</name>
  55. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  56. </repository>
  57. </repositories>
  58. </project>