pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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>xxgl</artifactId>
  7. <groupId>com.miaxis</groupId>
  8. <version>1.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>xxgl-service</artifactId>
  12. <dependencies>
  13. <!-- 通用工具-->
  14. <dependency>
  15. <groupId>com.miaxis</groupId>
  16. <artifactId>xxgl-common</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.miaxis</groupId>
  20. <artifactId>xxgl-system</artifactId>
  21. </dependency>
  22. <!-- 核心模块-->
  23. <!--<dependency>-->
  24. <!--<groupId>com.miaxis</groupId>-->
  25. <!--<artifactId>xxgl-framework</artifactId>-->
  26. <!--</dependency>-->
  27. <!-- mpp代码生成器-->
  28. <dependency>
  29. <groupId>com.baomidou</groupId>
  30. <artifactId>mybatis-plus-generator</artifactId>
  31. <version>3.4.0</version>
  32. </dependency>
  33. <!--模板引擎-->
  34. <dependency>
  35. <groupId>org.apache.velocity</groupId>
  36. <artifactId>velocity-engine-core</artifactId>
  37. <version>2.1</version>
  38. </dependency>
  39. <!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
  40. <dependency>
  41. <groupId>commons-httpclient</groupId>
  42. <artifactId>commons-httpclient</artifactId>
  43. <version>3.1</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.github.wechatpay-apiv3</groupId>
  47. <artifactId>wechatpay-apache-httpclient</artifactId>
  48. <version>0.2.1</version>
  49. </dependency>
  50. </dependencies>
  51. </project>