pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. <!-- json -->
  14. <dependency>
  15. <groupId>com.alibaba</groupId>
  16. <artifactId>fastjson</artifactId>
  17. <version>1.2.47</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.apache.httpcomponents</groupId>
  21. <artifactId>httpclient</artifactId>
  22. <version>${org.apache.httpcomponents.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.httpcomponents</groupId>
  26. <artifactId>httpclient-cache</artifactId>
  27. <version>${org.apache.httpcomponents.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.httpcomponents</groupId>
  31. <artifactId>httpclient-win</artifactId>
  32. <version>${org.apache.httpcomponents.version}</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.httpcomponents</groupId>
  36. <artifactId>httpmime</artifactId>
  37. <version>${org.apache.httpcomponents.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.httpcomponents</groupId>
  41. <artifactId>httpcore</artifactId>
  42. <version>4.4.9</version>
  43. </dependency>
  44. </dependencies>
  45. <repositories>
  46. <repository>
  47. <id>alimaven</id>
  48. <name>aliyun maven</name>
  49. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  50. </repository>
  51. </repositories>
  52. </project>