四零语境后端代码仓库
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.

75 lines
2.4 KiB

1 month ago
1 month ago
1 month ago
2 weeks ago
1 month ago
1 month ago
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <artifactId>jeecgboot-boot-applet</artifactId>
  5. <!-- <build>-->
  6. <!-- <plugins>-->
  7. <!-- <plugin>-->
  8. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  9. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  10. <!-- <configuration>-->
  11. <!-- <source>8</source>-->
  12. <!-- <target>8</target>-->
  13. <!-- </configuration>-->
  14. <!-- </plugin>-->
  15. <!-- </plugins>-->
  16. <!-- </build>-->
  17. <parent>
  18. <artifactId>jeecg-boot-module</artifactId>
  19. <groupId>org.jeecgframework.boot</groupId>
  20. <version>3.8.1</version>
  21. </parent>
  22. <repositories>
  23. <repository>
  24. <id>aliyun</id>
  25. <name>aliyun Repository</name>
  26. <url>https://maven.aliyun.com/repository/public</url>
  27. <snapshots>
  28. <enabled>false</enabled>
  29. </snapshots>
  30. </repository>
  31. <repository>
  32. <id>jeecg</id>
  33. <name>jeecg Repository</name>
  34. <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  35. <snapshots>
  36. <enabled>false</enabled>
  37. </snapshots>
  38. </repository>
  39. </repositories>
  40. <dependencies>
  41. <dependency>
  42. <groupId>org.jeecgframework.boot</groupId>
  43. <artifactId>jeecg-boot-base-core</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.jeecgframework.boot</groupId>
  47. <artifactId>module-pay</artifactId>
  48. <version>3.8.1</version>
  49. </dependency>
  50. <!-- zxing生成二维码 -->
  51. <dependency>
  52. <groupId>com.google.zxing</groupId>
  53. <artifactId>core</artifactId>
  54. <version>3.3.3</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.google.zxing</groupId>
  58. <artifactId>javase</artifactId>
  59. <version>3.3.3</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.tencentcloudapi</groupId>
  63. <artifactId>tencentcloud-sdk-java-tts</artifactId>
  64. <version>3.1.1305</version>
  65. </dependency>
  66. </dependencies>
  67. </project>