pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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>toktok-parent</artifactId>
  7. <groupId>com.sp.toktok</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>toktok-core</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.sp.toktok-parent</groupId>
  19. <artifactId>sp-common</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.sp.toktok-parent</groupId>
  23. <artifactId>sp-module-account-core</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.sp.toktok-parent</groupId>
  27. <artifactId>sp-manager-realname-starter</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.sp.toktok-parent</groupId>
  31. <artifactId>sp-manager-pay-starter</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alipay.api</groupId>
  35. <artifactId>alipay-pay-system</artifactId>
  36. <version>1.0</version>
  37. <scope>system</scope>
  38. <systemPath>${pom.basedir}/lib/alipay-sdk-java-3.3.1.jar</systemPath>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.sp.toktok-parent</groupId>
  42. <artifactId>sp-manager-im-starter</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.sp.toktok-parent</groupId>
  46. <artifactId>sp-manager-oss-starter</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.sp.toktok-parent</groupId>
  50. <artifactId>sp-manager-third-aliyun-starter</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.projectlombok</groupId>
  54. <artifactId>lombok</artifactId>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.squareup.okhttp3</groupId>
  59. <artifactId>okhttp</artifactId>
  60. <version>3.8.1</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.jthinking.common</groupId>
  64. <artifactId>ip-info</artifactId>
  65. </dependency>
  66. </dependencies>
  67. </project>