合同小程序后台管理系统后端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.9 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.jeecgframework.boot</groupId>
  8. <artifactId>jeecg-boot-parent</artifactId>
  9. <version>3.7.2</version>
  10. </parent>
  11. <artifactId>jeecg-module-miniapp</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.jeecgframework.boot</groupId>
  15. <artifactId>jeecg-boot-base-core</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.jeecgframework.boot</groupId>
  19. <artifactId>jeecg-module-demo</artifactId>
  20. <version>3.7.2</version>
  21. </dependency>
  22. <!--微信小程序封装依赖-->
  23. <dependency>
  24. <groupId>com.github.binarywang</groupId>
  25. <artifactId>wx-java-miniapp-spring-boot-starter</artifactId>
  26. </dependency>
  27. <!--pdf工具类-->
  28. <dependency>
  29. <groupId>org.apache.pdfbox</groupId>
  30. <artifactId>pdfbox</artifactId>
  31. <version>2.0.27</version>
  32. </dependency>
  33. <!--pdf 文本域处理-->
  34. <!-- iText 7 核心库 -->
  35. <dependency>
  36. <groupId>com.itextpdf</groupId>
  37. <artifactId>itext7-core</artifactId>
  38. <version>8.0.3</version>
  39. <type>pom</type>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework</groupId>
  43. <artifactId>spring-test</artifactId>
  44. </dependency>
  45. </dependencies><build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><configuration><source>8</source><target>8</target></configuration></plugin></plugins></build>
  46. </project>