pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <parent>
  5. <groupId>org.sixmac</groupId>
  6. <artifactId>container</artifactId>
  7. <version>1.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>org.sixmac</groupId>
  11. <artifactId>common</artifactId>
  12. <packaging>jar</packaging>
  13. <version>1.0</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.google.code.gson</groupId>
  17. <artifactId>gson</artifactId>
  18. <version>2.2.4</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.data</groupId>
  22. <artifactId>spring-data-redis</artifactId>
  23. <version>2.7.18</version>
  24. </dependency>
  25. <!-- JSON 处理 -->
  26. <dependency>
  27. <groupId>com.fasterxml.jackson.core</groupId>
  28. <artifactId>jackson-databind</artifactId>
  29. <version>2.13.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.itextpdf</groupId>
  33. <artifactId>itext-asian</artifactId>
  34. <version>5.2.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.github.binarywang</groupId>
  38. <artifactId>weixin-java-mp</artifactId>
  39. <version>3.3.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>commons-configuration</groupId>
  43. <artifactId>commons-configuration</artifactId>
  44. <version>1.6</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>log4j</groupId>
  48. <artifactId>log4j</artifactId>
  49. <version>1.2.17</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.bouncycastle</groupId>
  53. <artifactId>bcprov-jdk15on</artifactId>
  54. <version>1.54</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>io.minio</groupId>
  58. <artifactId>minio</artifactId>
  59. <version>7.1.0</version> <!-- 必须是7.0.0,高版本不支持三参数构造 -->
  60. </dependency>
  61. <dependency>
  62. <groupId>com.squareup.okio</groupId>
  63. <artifactId>okio</artifactId>
  64. <version>1.17.5</version> <!-- 与OkHttp 3.14.9兼容的版本 -->
  65. </dependency>
  66. <dependency>
  67. <groupId>junit</groupId>
  68. <artifactId>junit</artifactId>
  69. <version>4.10</version>
  70. </dependency>
  71. </dependencies>
  72. <name>common</name>
  73. <build>
  74. <finalName>common</finalName>
  75. <plugins>
  76. <plugin>
  77. <artifactId>maven-compiler-plugin</artifactId>
  78. <configuration>
  79. <source>${jdk.version}</source>
  80. <target>${jdk.version}</target>
  81. <encoding>UTF-8</encoding>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. <resources>
  86. <resource>
  87. <directory>src/main/resources</directory>
  88. <filtering>true</filtering>
  89. </resource>
  90. </resources>
  91. </build>
  92. </project>