pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.zhentao</groupId>
  6. <artifactId>MedSmart</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>MedSmart</name>
  9. <description>MedSmart</description>
  10. <properties>
  11. <java.version>17</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.7.6</spring-boot.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.modelmapper</groupId>
  19. <artifactId>modelmapper</artifactId>
  20. <version>3.1.1</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.apache.poi</groupId>
  24. <artifactId>poi</artifactId>
  25. <version>5.2.3</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.poi</groupId>
  29. <artifactId>poi-ooxml</artifactId>
  30. <version>5.2.3</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>dev.langchain4j</groupId>
  34. <artifactId>langchain4j-open-ai</artifactId>
  35. <version>1.0.0-beta3</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>dev.langchain4j</groupId>
  39. <artifactId>langchain4j</artifactId>
  40. <version>1.0.0-beta3</version>
  41. </dependency>
  42. <!-- Maven 依赖 -->
  43. <dependency>
  44. <groupId>dev.langchain4j</groupId>
  45. <artifactId>langchain4j</artifactId>
  46. <version>0.25.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.zaxxer</groupId>
  50. <artifactId>HikariCP</artifactId>
  51. <version>5.0.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>mysql</groupId>
  55. <artifactId>mysql-connector-java</artifactId>
  56. <scope>runtime</scope>
  57. </dependency>
  58. <!-- Spring Boot 基础依赖 -->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-web</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-data-redis</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.boot</groupId>
  69. <artifactId>spring-boot-starter-validation</artifactId>
  70. </dependency>
  71. <!-- 数据库相关 -->
  72. <dependency>
  73. <groupId>com.baomidou</groupId>
  74. <artifactId>mybatis-plus-boot-starter</artifactId>
  75. <version>3.5.3.1</version>
  76. </dependency>
  77. <!-- 工具库 -->
  78. <dependency>
  79. <groupId>com.alibaba</groupId>
  80. <artifactId>fastjson</artifactId>
  81. <version>2.0.24</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.projectlombok</groupId>
  85. <artifactId>lombok</artifactId>
  86. <optional>true</optional>
  87. </dependency>
  88. <dependency>
  89. <groupId>commons-codec</groupId>
  90. <artifactId>commons-codec</artifactId>
  91. <version>1.15</version>
  92. </dependency>
  93. </dependencies>
  94. <dependencyManagement>
  95. <dependencies>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-dependencies</artifactId>
  99. <version>${spring-boot.version}</version>
  100. <type>pom</type>
  101. <scope>import</scope>
  102. </dependency>
  103. </dependencies>
  104. </dependencyManagement>
  105. <build>
  106. <plugins>
  107. <plugin>
  108. <groupId>org.apache.maven.plugins</groupId>
  109. <artifactId>maven-compiler-plugin</artifactId>
  110. <version>3.8.1</version>
  111. <configuration>
  112. <source>17</source>
  113. <target>17</target>
  114. <encoding>UTF-8</encoding>
  115. </configuration>
  116. </plugin>
  117. <plugin>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-maven-plugin</artifactId>
  120. <version>${spring-boot.version}</version>
  121. <configuration>
  122. <mainClass>com.zhentao.MedSmartApplication</mainClass>
  123. <skip>true</skip>
  124. </configuration>
  125. <executions>
  126. <execution>
  127. <id>repackage</id>
  128. <goals>
  129. <goal>repackage</goal>
  130. </goals>
  131. </execution>
  132. </executions>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. </project>