pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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>jeecg-boot-parent</artifactId>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <version>2.4.5</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jeecg-boot-common</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.jeecgframework.boot</groupId>
  15. <artifactId>jeecg-boot-base-core</artifactId>
  16. </dependency>
  17. <!--引入微服务启动依赖 starter-->
  18. <dependency>
  19. <groupId>org.jeecgframework.boot</groupId>
  20. <artifactId>jeecg-boot-starter-cloud</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.jeecgframework.boot</groupId>
  24. <artifactId>jeecg-system-local-api</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.alibaba</groupId>
  28. <artifactId>easyexcel</artifactId>
  29. <version>1.1.2-beat1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.github.pagehelper</groupId>
  33. <artifactId>pagehelper-spring-boot-starter</artifactId>
  34. <version>1.2.3</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.httpcomponents</groupId>
  38. <artifactId>httpclient</artifactId>
  39. <version>4.5.9</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.httpcomponents</groupId>
  43. <artifactId>httpcore</artifactId>
  44. <version>4.4</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.qcloud</groupId>
  48. <artifactId>cos_api</artifactId>
  49. <version>5.6.25</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.google.code.gson</groupId>
  53. <artifactId>gson</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>net.sourceforge.javacsv</groupId>
  57. <artifactId>javacsv</artifactId>
  58. <version>2.0</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.github.tony19</groupId>
  62. <artifactId>apktool-lib</artifactId>
  63. <version>1.4.4-3</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.googlecode.plist</groupId>
  68. <artifactId>dd-plist</artifactId>
  69. <version>1.16</version>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.tencentcloudapi</groupId>
  74. <artifactId>tencentcloud-sdk-java</artifactId>
  75. <version>3.1.62</version><!-- 注:这里只是示例版本号,请获取并替换为 最新的版本号 -->
  76. </dependency>
  77. <dependency>
  78. <groupId>com.github.binarywang</groupId>
  79. <artifactId>weixin-java-cp</artifactId>
  80. <version>3.6.0</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>thirtpart</groupId>
  84. <artifactId>jave</artifactId>
  85. <version>1.0</version>
  86. <scope>system</scope>
  87. <systemPath>${project.basedir}/src/main/resources/lib/jave-1.0.jar</systemPath>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-maven-plugin</artifactId>
  95. <configuration>
  96. <includeSystemScope>true</includeSystemScope>
  97. </configuration>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>