pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>3.3.5</version>
  10. <relativePath/>
  11. </parent>
  12. <groupId>com.wenshu</groupId>
  13. <artifactId>wenshu-platform-backend</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <name>wenshu-platform-backend</name>
  16. <description>Wenshu Platform Backend</description>
  17. <properties>
  18. <java.version>17</java.version>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-validation</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-aop</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-websocket</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-quartz</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.mybatis.spring.boot</groupId>
  45. <artifactId>mybatis-spring-boot-starter</artifactId>
  46. <version>3.0.3</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.security</groupId>
  50. <artifactId>spring-security-core</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.projectlombok</groupId>
  54. <artifactId>lombok</artifactId>
  55. <optional>true</optional>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.mysql</groupId>
  59. <artifactId>mysql-connector-j</artifactId>
  60. <scope>runtime</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.github.mwiede</groupId>
  64. <artifactId>jsch</artifactId>
  65. <version>0.2.23</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.github.ben-manes.caffeine</groupId>
  69. <artifactId>caffeine</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>software.amazon.awssdk</groupId>
  73. <artifactId>s3</artifactId>
  74. <version>2.25.55</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.parquet</groupId>
  78. <artifactId>parquet-avro</artifactId>
  79. <version>1.14.1</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.google.protobuf</groupId>
  83. <artifactId>protobuf-java</artifactId>
  84. <version>3.24.0</version>
  85. </dependency>
  86. <!-- Milvus Java SDK: 向量存储与RAG语义检索 -->
  87. <dependency>
  88. <groupId>io.milvus</groupId>
  89. <artifactId>milvus-sdk-java</artifactId>
  90. <version>2.4.4</version>
  91. </dependency>
  92. <!-- ANTLR4: Spark/StarRocks SQL语法解析校验 -->
  93. <dependency>
  94. <groupId>org.antlr</groupId>
  95. <artifactId>antlr4-runtime</artifactId>
  96. <version>4.9.3</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework.boot</groupId>
  100. <artifactId>spring-boot-starter-test</artifactId>
  101. <scope>test</scope>
  102. </dependency>
  103. </dependencies>
  104. <build>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.antlr</groupId>
  108. <artifactId>antlr4-maven-plugin</artifactId>
  109. <version>4.9.3</version>
  110. <executions>
  111. <execution>
  112. <goals>
  113. <goal>antlr4</goal>
  114. </goals>
  115. </execution>
  116. </executions>
  117. <configuration>
  118. <visitor>false</visitor>
  119. <listener>false</listener>
  120. </configuration>
  121. </plugin>
  122. <plugin>
  123. <groupId>org.springframework.boot</groupId>
  124. <artifactId>spring-boot-maven-plugin</artifactId>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. </project>