pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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>service</artifactId>
  7. <groupId>com.gjz</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service_order</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.github.wxpay</groupId>
  15. <artifactId>wxpay-sdk</artifactId>
  16. <version>0.0.3</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.alibaba</groupId>
  20. <artifactId>fastjson</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>javax.xml.bind</groupId>
  24. <artifactId>jaxb-api</artifactId>
  25. <version>2.3.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.sun.xml.bind</groupId>
  29. <artifactId>jaxb-impl</artifactId>
  30. <version>2.3.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.sun.xml.bind</groupId>
  34. <artifactId>jaxb-core</artifactId>
  35. <version>2.3.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>javax.activation</groupId>
  39. <artifactId>activation</artifactId>
  40. <version>1.1.1</version>
  41. </dependency>
  42. </dependencies>
  43. <properties>
  44. <maven.compiler.source>11</maven.compiler.source>
  45. <maven.compiler.target>11</maven.compiler.target>
  46. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  47. </properties>
  48. </project>