pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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>3.7.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>wx-java-mp-spring-boot-starter</artifactId>
  12. <name>WxJava - Spring Boot Starter for MP</name>
  13. <description>微信公众号开发的 Spring Boot Starter</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.github.binarywang</groupId>
  17. <artifactId>weixin-java-mp</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>redis.clients</groupId>
  22. <artifactId>jedis</artifactId>
  23. <scope>compile</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.redisson</groupId>
  27. <artifactId>redisson</artifactId>
  28. <scope>compile</scope>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-maven-plugin</artifactId>
  36. <version>${spring.boot.version}</version>
  37. </plugin>
  38. <plugin>
  39. <groupId>org.apache.maven.plugins</groupId>
  40. <artifactId>maven-source-plugin</artifactId>
  41. <version>2.2.1</version>
  42. <executions>
  43. <execution>
  44. <id>attach-sources</id>
  45. <goals>
  46. <goal>jar-no-fork</goal>
  47. </goals>
  48. </execution>
  49. </executions>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. </project>