pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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>com.starbuds.server</groupId>
  7. <artifactId>service-user</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>com.starbuds.server</groupId>
  12. <artifactId>service-parent</artifactId>
  13. <version>1.0.0-SNAPSHOT</version>
  14. </parent>
  15. <properties>
  16. <ons-client.version>1.8.4.Final</ons-client.version>
  17. <alipay-sdk-java.version>4.8.73.ALL</alipay-sdk-java.version>
  18. </properties>
  19. <dependencies>
  20. <!-- 阿里云实人认证 -->
  21. <dependency>
  22. <groupId>com.aliyun</groupId>
  23. <artifactId>aliyun-java-sdk-core</artifactId>
  24. <version>4.4.6</version>
  25. <scope>compile</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.aliyun</groupId>
  29. <artifactId>aliyun-java-sdk-cloudauth</artifactId>
  30. <version>2.0.1</version>
  31. <scope>compile</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.aliyun</groupId>
  35. <artifactId>aliyun-java-sdk-dypnsapi</artifactId>
  36. <version>1.0.4</version>
  37. </dependency>
  38. <!-- jpa -->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-data-jpa</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-aop</artifactId>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/com.dyuproject.protostuff/protostuff-core -->
  48. <dependency>
  49. <groupId>com.dyuproject.protostuff</groupId>
  50. <artifactId>protostuff-core</artifactId>
  51. <version>1.1.5</version>
  52. </dependency>
  53. <!-- https://mvnrepository.com/artifact/com.dyuproject.protostuff/protostuff-runtime -->
  54. <dependency>
  55. <groupId>com.dyuproject.protostuff</groupId>
  56. <artifactId>protostuff-runtime</artifactId>
  57. <version>1.1.5</version>
  58. </dependency>
  59. <!-- Aliyun ONS -->
  60. <dependency>
  61. <groupId>com.aliyun.openservices</groupId>
  62. <artifactId>ons-client</artifactId>
  63. <version>${ons-client.version}</version>
  64. </dependency>
  65. <!-- 支付宝 SDK -->
  66. <dependency>
  67. <groupId>com.alipay.sdk</groupId>
  68. <artifactId>alipay-sdk-java</artifactId>
  69. <version>${alipay-sdk-java.version}</version>
  70. </dependency>
  71. <!-- 验证Url https://mvnrepository.com/artifact/commons-validator/commons-validator -->
  72. <dependency>
  73. <groupId>commons-validator</groupId>
  74. <artifactId>commons-validator</artifactId>
  75. <version>1.6</version>
  76. </dependency>
  77. <!-- https://mvnrepository.com/artifact/com.github.javafaker/javafaker -->
  78. <dependency>
  79. <groupId>com.github.javafaker</groupId>
  80. <artifactId>javafaker</artifactId>
  81. <version>1.0.2</version>
  82. </dependency>
  83. </dependencies>
  84. <build>
  85. <finalName>${project.artifactId}</finalName>
  86. </build>
  87. </project>