pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. <parent>
  6. <groupId>org.eco.vip</groupId>
  7. <artifactId>eco-boot</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <artifactId>eco-start</artifactId>
  11. <name>${project.artifactId}</name>
  12. <description>eco-start web 服务入口</description>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.eco.vip</groupId>
  17. <artifactId>ai-text-sql-biz</artifactId>
  18. <version>${revision}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.eco.vip</groupId>
  22. <artifactId>ai-ollama-biz</artifactId>
  23. <version>${revision}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.eco.vip</groupId>
  27. <artifactId>auth-biz</artifactId>
  28. <version>${revision}</version>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-maven-plugin</artifactId>
  36. <version>${spring-boot.version}</version>
  37. <executions>
  38. <execution>
  39. <goals>
  40. <goal>repackage</goal>
  41. </goals>
  42. </execution>
  43. </executions>
  44. </plugin>
  45. </plugins>
  46. <finalName>${project.artifactId}</finalName>
  47. </build>
  48. </project>