pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. <parent>
  6. <artifactId>lift-server</artifactId>
  7. <groupId>cn.com.ty</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>lift-common</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.com.xwy</groupId>
  15. <artifactId>xwy-util</artifactId>
  16. </dependency>
  17. <!--集成Hutool是一个小而全的Java工具类库:https://www.hutool.cn/docs/#/-->
  18. <dependency>
  19. <groupId>cn.hutool</groupId>
  20. <artifactId>hutool-all</artifactId>
  21. <version>5.0.6</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.poi</groupId>
  25. <artifactId>poi-ooxml</artifactId>
  26. <version>3.17</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.aliyun.oss</groupId>
  30. <artifactId>aliyun-sdk-oss</artifactId>
  31. <version>3.5.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.aliyun</groupId>
  35. <artifactId>aliyun-java-sdk-core</artifactId>
  36. <version>4.0.3</version>
  37. </dependency>
  38. <!--支付宝依赖-->
  39. <dependency>
  40. <groupId>com.alipay.sdk</groupId>
  41. <artifactId>alipay-sdk-java</artifactId>
  42. <version>4.8.73.ALL</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>commons-logging</groupId>
  46. <artifactId>commons-logging</artifactId>
  47. <version>1.2</version>
  48. </dependency>
  49. <!--Apache 公共bean工具包 -->
  50. <dependency>
  51. <groupId>commons-beanutils</groupId>
  52. <artifactId>commons-beanutils</artifactId>
  53. <version>1.9.3</version>
  54. </dependency>
  55. <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
  56. <dependency>
  57. <groupId>com.belerweb</groupId>
  58. <artifactId>pinyin4j</artifactId>
  59. <version>2.5.1</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>ch.qos.logback</groupId>
  63. <artifactId>logback-access</artifactId>
  64. <version>${logback.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>ch.qos.logback</groupId>
  68. <artifactId>logback-classic</artifactId>
  69. <version>${logback.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>ch.qos.logback</groupId>
  73. <artifactId>logback-core</artifactId>
  74. <version>${logback.version}</version>
  75. </dependency>
  76. </dependencies>
  77. </project>