pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. <artifactId>forge-server</artifactId>
  7. <groupId>com.mdframe.forge</groupId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>forge-report-server</artifactId>
  12. <name>forge-report</name>
  13. <description>forge-report 数据可视化大屏后端服务</description>
  14. <dependencies>
  15. <!-- Mysql驱动包 -->
  16. <dependency>
  17. <groupId>com.mysql</groupId>
  18. <artifactId>mysql-connector-j</artifactId>
  19. </dependency>
  20. <!-- Forge Starters -->
  21. <dependency>
  22. <groupId>com.mdframe.forge</groupId>
  23. <artifactId>forge-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.mdframe.forge</groupId>
  27. <artifactId>forge-starter-auth</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.mdframe.forge</groupId>
  31. <artifactId>forge-starter-orm</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.mdframe.forge</groupId>
  35. <artifactId>forge-starter-tenant</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.mdframe.forge</groupId>
  39. <artifactId>forge-starter-api-config</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.mdframe.forge</groupId>
  43. <artifactId>forge-starter-crypto</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.mdframe.forge</groupId>
  47. <artifactId>forge-plugin-system</artifactId>
  48. </dependency>
  49. <!-- AI 能力插件(供应商管理、Agent 管理、对话、会话、多轮上下文) -->
  50. <dependency>
  51. <groupId>com.mdframe.forge</groupId>
  52. <artifactId>forge-plugin-ai</artifactId>
  53. </dependency>
  54. <!-- Lombok -->
  55. <dependency>
  56. <groupId>org.projectlombok</groupId>
  57. <artifactId>lombok</artifactId>
  58. <scope>provided</scope>
  59. </dependency>
  60. <!-- 外部接口代理转发插件 -->
  61. <dependency>
  62. <groupId>com.mdframe.forge</groupId>
  63. <artifactId>forge-plugin-external</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.mdframe.forge</groupId>
  67. <artifactId>forge-plugin-data</artifactId>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <finalName>${project.artifactId}</finalName>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-maven-plugin</artifactId>
  76. <version>${spring-boot.version}</version>
  77. <executions>
  78. <execution>
  79. <goals>
  80. <goal>repackage</goal>
  81. </goals>
  82. </execution>
  83. </executions>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.apache.maven.plugins</groupId>
  87. <artifactId>maven-jar-plugin</artifactId>
  88. <version>${maven-jar-plugin.version}</version>
  89. </plugin>
  90. <plugin>
  91. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-war-plugin</artifactId>
  93. <version>${maven-war-plugin.version}</version>
  94. <configuration>
  95. <failOnMissingWebXml>false</failOnMissingWebXml>
  96. <warName>${project.artifactId}</warName>
  97. </configuration>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>