pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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>org.apache.httpcomponents</groupId>
  28. <artifactId>httpmime</artifactId>
  29. <version>4.5.10</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.qcloud</groupId>
  33. <artifactId>cos_api</artifactId>
  34. <version>5.6.25</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.tencentcloudapi</groupId>
  38. <artifactId>tencentcloud-sdk-java</artifactId>
  39. <version>3.1.62</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.alibaba</groupId>
  43. <artifactId>easyexcel</artifactId>
  44. <version>1.1.2-beat1</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.github.tony19</groupId>
  48. <artifactId>apktool-lib</artifactId>
  49. <version>1.4.4-3</version>
  50. <scope>compile</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.github.binarywang</groupId>
  54. <artifactId>weixin-java-cp</artifactId>
  55. <version>3.6.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.googlecode.plist</groupId>
  59. <artifactId>dd-plist</artifactId>
  60. <version>1.16</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>thirtpart</groupId>
  65. <artifactId>jave</artifactId>
  66. <version>1.0</version>
  67. <scope>system</scope>
  68. <systemPath>${project.basedir}/src/main/resources/lib/jave-1.0.jar</systemPath>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-maven-plugin</artifactId>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </project>