pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <dependency>
  18. <groupId>com.aliyun.oss</groupId>
  19. <artifactId>aliyun-sdk-oss</artifactId>
  20. <version>3.5.0</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.aliyun</groupId>
  24. <artifactId>aliyun-java-sdk-core</artifactId>
  25. <version>4.0.3</version>
  26. </dependency>
  27. <!--支付宝依赖-->
  28. <dependency>
  29. <groupId>com.alipay.sdk</groupId>
  30. <artifactId>alipay-sdk-java</artifactId>
  31. <version>4.8.73.ALL</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>commons-logging</groupId>
  35. <artifactId>commons-logging</artifactId>
  36. <version>1.2</version>
  37. </dependency>
  38. <!--Apache 公共bean工具包 -->
  39. <dependency>
  40. <groupId>commons-beanutils</groupId>
  41. <artifactId>commons-beanutils</artifactId>
  42. <version>1.9.3</version>
  43. </dependency>
  44. <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
  45. <dependency>
  46. <groupId>com.belerweb</groupId>
  47. <artifactId>pinyin4j</artifactId>
  48. <version>2.5.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>ch.qos.logback</groupId>
  52. <artifactId>logback-access</artifactId>
  53. <version>${logback.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>ch.qos.logback</groupId>
  57. <artifactId>logback-classic</artifactId>
  58. <version>${logback.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>ch.qos.logback</groupId>
  62. <artifactId>logback-core</artifactId>
  63. <version>${logback.version}</version>
  64. </dependency>
  65. </dependencies>
  66. </project>