pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. <groupId>com.qmth.test</groupId>
  5. <artifactId>ImageUtil</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <name>ImageUtil</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.upyun</groupId>
  16. <artifactId>java-sdk</artifactId>
  17. <version>3.20</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>commons-httpclient</groupId>
  21. <artifactId>commons-httpclient</artifactId>
  22. <version>3.1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.commons</groupId>
  26. <artifactId>commons-lang3</artifactId>
  27. <version>3.6</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>net.sf.json-lib</groupId>
  31. <artifactId>json-lib-ext-spring</artifactId>
  32. <version>1.0.2</version>
  33. </dependency>
  34. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. <version>6.0.6</version>
  39. </dependency>
  40. <!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
  41. <dependency>
  42. <groupId>org.springframework</groupId>
  43. <artifactId>spring-jdbc</artifactId>
  44. <version>4.3.25.RELEASE</version>
  45. </dependency>
  46. <!-- https://mvnrepository.com/artifact/commons-dbcp/commons-dbcp -->
  47. <dependency>
  48. <groupId>commons-dbcp</groupId>
  49. <artifactId>commons-dbcp</artifactId>
  50. <version>1.4</version>
  51. </dependency>
  52. <!-- https://mvnrepository.com/artifact/commons-pool/commons-pool -->
  53. <dependency>
  54. <groupId>commons-pool</groupId>
  55. <artifactId>commons-pool</artifactId>
  56. <version>1.5.4</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>junit</groupId>
  60. <artifactId>junit</artifactId>
  61. <version>3.8.1</version>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>commons-io</groupId>
  66. <artifactId>commons-io</artifactId>
  67. <version>2.6</version>
  68. <scope>compile</scope>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-compiler-plugin</artifactId>
  76. <version>2.3.2</version>
  77. <configuration>
  78. <source>1.8</source>
  79. <target>1.8</target>
  80. <encoding>UTF-8</encoding>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>