pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>wx-java-spring-boot-starters</artifactId>
  5. <groupId>com.github.binarywang</groupId>
  6. <version>4.4.1.B</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>wx-java-miniapp-spring-boot-starter</artifactId>
  10. <name>WxJava - Spring Boot Starter for MiniApp</name>
  11. <description>微信小程序开发的 Spring Boot Starter</description>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.github.binarywang</groupId>
  15. <artifactId>weixin-java-miniapp</artifactId>
  16. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>redis.clients</groupId>
  20. <artifactId>jedis</artifactId>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.redisson</groupId>
  25. <artifactId>redisson</artifactId>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.data</groupId>
  30. <artifactId>spring-data-redis</artifactId>
  31. <version>${spring.boot.version}</version>
  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>