pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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>com.dataeasy</groupId>
  8. <artifactId>server</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>data-easy</artifactId>
  12. <properties>
  13. <wxjava.version>4.7.0</wxjava.version>
  14. <jwt.version>4.4.0</jwt.version>
  15. <spring-ai.version>1.0.0-M6</spring-ai.version>
  16. </properties>
  17. <dependencyManagement>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.ai</groupId>
  21. <artifactId>spring-ai-bom</artifactId>
  22. <version>${spring-ai.version}</version>
  23. <type>pom</type>
  24. <scope>import</scope>
  25. </dependency>
  26. </dependencies>
  27. </dependencyManagement>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springframework.cloud</groupId>
  31. <artifactId>spring-cloud-starter-openfeign</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-validation</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-test</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.ai</groupId>
  44. <artifactId>spring-ai-openai-spring-boot-starter</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-web</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-aop</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-cache</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.github.ben-manes.caffeine</groupId>
  60. <artifactId>caffeine</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework</groupId>
  64. <artifactId>spring-tx</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.mysql</groupId>
  68. <artifactId>mysql-connector-j</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>tk.mybatis</groupId>
  76. <artifactId>mapper-spring-boot-starter</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.auth0</groupId>
  80. <artifactId>java-jwt</artifactId>
  81. <version>${jwt.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.github.ulisesbocchio</groupId>
  85. <artifactId>jasypt-spring-boot-starter</artifactId>
  86. <version>${jasypt.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.github.binarywang</groupId>
  90. <artifactId>wx-java-mp-spring-boot-starter</artifactId>
  91. <version>${wxjava.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.github.binarywang</groupId>
  95. <artifactId>weixin-java-pay</artifactId>
  96. <version>${wxjava.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.github.binarywang</groupId>
  100. <artifactId>wx-java-miniapp-spring-boot-starter</artifactId>
  101. <version>${wxjava.version}</version>
  102. </dependency>
  103. </dependencies>
  104. <build>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.apache.maven.plugins</groupId>
  108. <artifactId>maven-jar-plugin</artifactId>
  109. <configuration>
  110. <archive>
  111. <manifest>
  112. <!-- 项目启动类 -->
  113. <mainClass>com.dataeasy.server.Application</mainClass>
  114. </manifest>
  115. </archive>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. </project>