pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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-hotel</artifactId>
  72. <version>${revision}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.mdframe.forge</groupId>
  76. <artifactId>forge-starter-api-config</artifactId>
  77. </dependency>
  78. <!-- Flow Client 供业务服务通过 HTTP 调用流程服务,包含 @FlowBind/@FlowStart/@FlowCallback 注解 -->
  79. <dependency>
  80. <groupId>com.mdframe.forge</groupId>
  81. <artifactId>forge-flow-client</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.mdframe.forge</groupId>
  85. <artifactId>forge-starter-social</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.mdframe.forge</groupId>
  89. <artifactId>forge-plugin-ai</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.mdframe.forge</groupId>
  93. <artifactId>forge-plugin-mcp</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.mdframe.forge</groupId>
  97. <artifactId>forge-plugin-capability-platform</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.mdframe.forge</groupId>
  101. <artifactId>forge-plugin-capability-actions</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.mdframe.forge</groupId>
  105. <artifactId>forge-plugin-capability-high-risk-approval</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-starter-test</artifactId>
  110. <scope>test</scope>
  111. </dependency>
  112. <!-- 外部接口代理转发插件 -->
  113. <dependency>
  114. <groupId>com.mdframe.forge</groupId>
  115. <artifactId>forge-plugin-external</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.mdframe.forge</groupId>
  119. <artifactId>forge-plugin-data</artifactId>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.flywaydb</groupId>
  123. <artifactId>flyway-core</artifactId>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.flywaydb</groupId>
  127. <artifactId>flyway-mysql</artifactId>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-starter-actuator</artifactId>
  132. </dependency>
  133. </dependencies>
  134. <build>
  135. <finalName>${project.artifactId}</finalName>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-maven-plugin</artifactId>
  140. <version>${spring-boot.version}</version>
  141. <executions>
  142. <execution>
  143. <goals>
  144. <goal>repackage</goal>
  145. </goals>
  146. </execution>
  147. </executions>
  148. </plugin>
  149. <plugin>
  150. <groupId>org.apache.maven.plugins</groupId>
  151. <artifactId>maven-jar-plugin</artifactId>
  152. <version>${maven-jar-plugin.version}</version>
  153. </plugin>
  154. <plugin>
  155. <groupId>org.apache.maven.plugins</groupId>
  156. <artifactId>maven-war-plugin</artifactId>
  157. <version>${maven-war-plugin.version}</version>
  158. <configuration>
  159. <failOnMissingWebXml>false</failOnMissingWebXml>
  160. <warName>${project.artifactId}</warName>
  161. </configuration>
  162. </plugin>
  163. </plugins>
  164. </build>
  165. </project>