pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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>wx-java-spring-boot-starters</artifactId>
  7. <groupId>com.github.binarywang</groupId>
  8. <version>4.6.5.B</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>wx-java-miniapp-multi-spring-boot-starter</artifactId>
  12. <name>WxJava - Spring Boot Starter for MiniApp::支持多账号配置</name>
  13. <description>微信公众号开发的 Spring Boot Starter::支持多账号配置</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.github.binarywang</groupId>
  17. <artifactId>weixin-java-miniapp</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>redis.clients</groupId>
  22. <artifactId>jedis</artifactId>
  23. <scope>provided</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.redisson</groupId>
  27. <artifactId>redisson</artifactId>
  28. <scope>provided</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.data</groupId>
  32. <artifactId>spring-data-redis</artifactId>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.jodd</groupId>
  37. <artifactId>jodd-http</artifactId>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.squareup.okhttp3</groupId>
  42. <artifactId>okhttp</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-maven-plugin</artifactId>
  51. <version>${spring.boot.version}</version>
  52. </plugin>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-source-plugin</artifactId>
  56. <version>2.2.1</version>
  57. <executions>
  58. <execution>
  59. <id>attach-sources</id>
  60. <goals>
  61. <goal>jar-no-fork</goal>
  62. </goals>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. </plugins>
  67. </build>
  68. </project>