pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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-admin-server</artifactId>
  12. <name>forge-admin</name>
  13. <description>forge-admin</description>
  14. <dependencies>
  15. <!-- Mysql驱动包 -->
  16. <dependency>
  17. <groupId>com.mysql</groupId>
  18. <artifactId>mysql-connector-j</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.mdframe.forge</groupId>
  22. <artifactId>forge-plugin-system</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.mdframe.forge</groupId>
  26. <artifactId>forge-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.mdframe.forge</groupId>
  30. <artifactId>forge-starter-auth</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.mdframe.forge</groupId>
  34. <artifactId>forge-starter-excel</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.mdframe.forge</groupId>
  38. <artifactId>forge-starter-config</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.mdframe.forge</groupId>
  42. <artifactId>forge-plugin-job</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.mdframe.forge</groupId>
  46. <artifactId>forge-starter-id</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.mdframe.forge</groupId>
  50. <artifactId>forge-starter-crypto</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.mdframe.forge</groupId>
  54. <artifactId>forge-plugin-message</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.mdframe.forge</groupId>
  58. <artifactId>forge-plugin-collaboration</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.mdframe.forge</groupId>
  62. <artifactId>forge-plugin-generator</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.mdframe.forge</groupId>
  66. <artifactId>forge-business-core</artifactId>
  67. <version>${revision}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.mdframe.forge</groupId>
  71. <artifactId>forge-starter-api-config</artifactId>
  72. </dependency>
  73. <!-- Flow Client 供业务服务通过 HTTP 调用流程服务,包含 @FlowBind/@FlowStart/@FlowCallback 注解 -->
  74. <dependency>
  75. <groupId>com.mdframe.forge</groupId>
  76. <artifactId>forge-flow-client</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.mdframe.forge</groupId>
  80. <artifactId>forge-starter-social</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.mdframe.forge</groupId>
  84. <artifactId>forge-plugin-ai</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.mdframe.forge</groupId>
  88. <artifactId>forge-plugin-mcp</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.mdframe.forge</groupId>
  92. <artifactId>forge-plugin-capability-platform</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.mdframe.forge</groupId>
  96. <artifactId>forge-plugin-capability-actions</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.mdframe.forge</groupId>
  100. <artifactId>forge-plugin-capability-high-risk-approval</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-starter-test</artifactId>
  105. <scope>test</scope>
  106. </dependency>
  107. <!-- 外部接口代理转发插件 -->
  108. <dependency>
  109. <groupId>com.mdframe.forge</groupId>
  110. <artifactId>forge-plugin-external</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.mdframe.forge</groupId>
  114. <artifactId>forge-plugin-data</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.flywaydb</groupId>
  118. <artifactId>flyway-core</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.flywaydb</groupId>
  122. <artifactId>flyway-mysql</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter-actuator</artifactId>
  127. </dependency>
  128. </dependencies>
  129. <build>
  130. <finalName>${project.artifactId}</finalName>
  131. <plugins>
  132. <plugin>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-maven-plugin</artifactId>
  135. <version>${spring-boot.version}</version>
  136. <executions>
  137. <execution>
  138. <goals>
  139. <goal>repackage</goal>
  140. </goals>
  141. </execution>
  142. </executions>
  143. </plugin>
  144. <plugin>
  145. <groupId>org.apache.maven.plugins</groupId>
  146. <artifactId>maven-jar-plugin</artifactId>
  147. <version>${maven-jar-plugin.version}</version>
  148. </plugin>
  149. <plugin>
  150. <groupId>org.apache.maven.plugins</groupId>
  151. <artifactId>maven-war-plugin</artifactId>
  152. <version>${maven-war-plugin.version}</version>
  153. <configuration>
  154. <failOnMissingWebXml>false</failOnMissingWebXml>
  155. <warName>${project.artifactId}</warName>
  156. </configuration>
  157. </plugin>
  158. </plugins>
  159. </build>
  160. </project>