pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>jeecg-module-lttc-ai</artifactId>
  6. <groupId>org.jeecgframework.boot</groupId>
  7. <version>3.7.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>jeecg-module-lttc-ai-biz</artifactId>
  11. <dependencyManagement>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.ai</groupId>
  15. <artifactId>spring-ai-bom</artifactId>
  16. <version>1.0.0-SNAPSHOT</version>
  17. <type>pom</type>
  18. <scope>import</scope>
  19. </dependency>
  20. </dependencies>
  21. </dependencyManagement>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.jeecgframework.boot</groupId>
  25. <artifactId>jeecg-module-lttc-ai-api</artifactId>
  26. <version>3.7.0</version>
  27. </dependency><!-- 百度千帆AI配置-->
  28. <dependency>
  29. <groupId>org.springframework.ai</groupId>
  30. <artifactId>spring-ai-qianfan-spring-boot-starter</artifactId>
  31. </dependency>
  32. </dependencies>
  33. <repositories>
  34. <repository>
  35. <id>spring-milestones</id>
  36. <name>Spring Milestones</name>
  37. <url>https://repo.spring.io/milestone</url>
  38. <snapshots>
  39. <enabled>false</enabled>
  40. </snapshots>
  41. </repository>
  42. <repository>
  43. <id>spring-snapshots</id>
  44. <name>Spring Snapshots</name>
  45. <url>https://repo.spring.io/snapshot</url>
  46. <releases>
  47. <enabled>false</enabled>
  48. </releases>
  49. </repository>
  50. </repositories>
  51. <build>
  52. <!-- 打包名称 -->
  53. <finalName>${project.artifactId}</finalName>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-source-plugin</artifactId>
  58. <version>${maven-source-plugin.version}</version>
  59. <executions>
  60. <execution>
  61. <id>attach-sources</id>
  62. <goals>
  63. <goal>jar</goal>
  64. </goals>
  65. </execution>
  66. </executions>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. </project>