pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. <exclusions>
  46. <exclusion>
  47. <groupId>javax.validation</groupId>
  48. <artifactId>validation-api</artifactId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-web</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-aop</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-cache</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.github.ben-manes.caffeine</groupId>
  66. <artifactId>caffeine</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework</groupId>
  70. <artifactId>spring-tx</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.mysql</groupId>
  74. <artifactId>mysql-connector-j</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.projectlombok</groupId>
  78. <artifactId>lombok</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>tk.mybatis</groupId>
  82. <artifactId>mapper-spring-boot-starter</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.auth0</groupId>
  86. <artifactId>java-jwt</artifactId>
  87. <version>${jwt.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.github.ulisesbocchio</groupId>
  91. <artifactId>jasypt-spring-boot-starter</artifactId>
  92. <version>${jasypt.version}</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.github.binarywang</groupId>
  96. <artifactId>wx-java-mp-spring-boot-starter</artifactId>
  97. <version>${wxjava.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.github.binarywang</groupId>
  101. <artifactId>weixin-java-pay</artifactId>
  102. <version>${wxjava.version}</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.github.binarywang</groupId>
  106. <artifactId>wx-java-miniapp-spring-boot-starter</artifactId>
  107. <version>${wxjava.version}</version>
  108. </dependency>
  109. </dependencies>
  110. <build>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-jar-plugin</artifactId>
  115. <configuration>
  116. <archive>
  117. <manifest>
  118. <!-- 项目启动类 -->
  119. <mainClass>com.dataeasy.server.Application</mainClass>
  120. </manifest>
  121. </archive>
  122. </configuration>
  123. </plugin>
  124. </plugins>
  125. </build>
  126. </project>