pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>wx-java-spring-boot-starters</artifactId>
  6. <groupId>com.github.binarywang</groupId>
  7. <version>4.6.5.B</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>wx-java-miniapp-spring-boot-starter</artifactId>
  11. <name>WxJava - Spring Boot Starter for MiniApp</name>
  12. <description>微信小程序开发的 Spring Boot Starter</description>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.github.binarywang</groupId>
  16. <artifactId>weixin-java-miniapp</artifactId>
  17. <version>${project.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>redis.clients</groupId>
  21. <artifactId>jedis</artifactId>
  22. <scope>provided</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.redisson</groupId>
  26. <artifactId>redisson</artifactId>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.data</groupId>
  31. <artifactId>spring-data-redis</artifactId>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.jodd</groupId>
  36. <artifactId>jodd-http</artifactId>
  37. <scope>provided</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.squareup.okhttp3</groupId>
  41. <artifactId>okhttp</artifactId>
  42. <scope>provided</scope>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-maven-plugin</artifactId>
  50. <version>${spring.boot.version}</version>
  51. </plugin>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-source-plugin</artifactId>
  55. <version>2.2.1</version>
  56. <executions>
  57. <execution>
  58. <id>attach-sources</id>
  59. <goals>
  60. <goal>jar-no-fork</goal>
  61. </goals>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>