pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.company.cloud.sdk</groupId>
  7. <artifactId>wx-sdk</artifactId>
  8. <version>2.0.0</version>
  9. </parent>
  10. <artifactId>weixin-java-common</artifactId>
  11. <description>微信基础SDK</description>
  12. <build>
  13. <plugins>
  14. <plugin>
  15. <artifactId>maven-compiler-plugin</artifactId>
  16. <configuration>
  17. <source>${java.version}</source>
  18. <target>${java.version}</target>
  19. <encoding>utf8</encoding>
  20. </configuration>
  21. </plugin>
  22. </plugins>
  23. </build>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.projectlombok</groupId>
  27. <artifactId>lombok</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>cn.hutool</groupId>
  31. <artifactId>hutool-all</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>fastjson</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>commons-codec</groupId>
  39. <artifactId>commons-codec</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>javax.validation</groupId>
  43. <artifactId>validation-api</artifactId>
  44. <scope>compile</scope>
  45. </dependency>
  46. </dependencies>
  47. </project>