pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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>linkwechat-cloud</artifactId>
  7. <groupId>com.linkwechat</groupId>
  8. <version>3.1.0</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>linkwe-service</artifactId>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-compiler-plugin</artifactId>
  18. <configuration>
  19. <source>1.8</source>
  20. <target>1.8</target>
  21. </configuration>
  22. </plugin>
  23. </plugins>
  24. </build>
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.linkwechat</groupId>
  28. <artifactId>linkwe-common</artifactId>
  29. <version>3.1.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>mysql</groupId>
  33. <artifactId>mysql-connector-java</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-amqp</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>io.github.openfeign</groupId>
  41. <artifactId>feign-httpclient</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.github.wechatpay-apiv3</groupId>
  45. <artifactId>wechatpay-apache-httpclient</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.linkwechat</groupId>
  53. <artifactId>linkwe-framework</artifactId>
  54. </dependency>
  55. </dependencies>
  56. </project>