pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>fastbee</artifactId>
  7. <groupId>com.fastbee</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>fastbee-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- spring-boot-devtools -->
  18. <!-- <dependency>-->
  19. <!-- <groupId>org.springframework.boot</groupId>-->
  20. <!-- <artifactId>spring-boot-devtools</artifactId>-->
  21. <!-- <optional>true</optional> &lt;!&ndash; 表示依赖不会传递 &ndash;&gt;-->
  22. <!-- </dependency>-->
  23. <!-- swagger3-->
  24. <dependency>
  25. <groupId>io.springfox</groupId>
  26. <artifactId>springfox-boot-starter</artifactId>
  27. </dependency>
  28. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  29. <dependency>
  30. <groupId>io.swagger</groupId>
  31. <artifactId>swagger-models</artifactId>
  32. <version>1.6.2</version>
  33. </dependency>
  34. <!-- Mysql驱动包 -->
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. </dependency>
  39. <!-- 核心模块-->
  40. <dependency>
  41. <groupId>com.fastbee</groupId>
  42. <artifactId>fastbee-framework</artifactId>
  43. </dependency>
  44. <!-- 定时任务-->
  45. <dependency>
  46. <groupId>com.fastbee</groupId>
  47. <artifactId>fastbee-quartz</artifactId>
  48. </dependency>
  49. <!-- 代码生成-->
  50. <dependency>
  51. <groupId>com.fastbee</groupId>
  52. <artifactId>fastbee-generator</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.fastbee</groupId>
  56. <artifactId>fastbee-oss</artifactId>
  57. </dependency>
  58. <!-- controller API模块-->
  59. <dependency>
  60. <groupId>com.fastbee</groupId>
  61. <artifactId>fastbee-open-api</artifactId>
  62. </dependency>
  63. <!--服务集成启动模块-->
  64. <dependency>
  65. <groupId>com.fastbee</groupId>
  66. <artifactId>boot-strap</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.fastbee</groupId>
  70. <artifactId>http-server</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.fastbee</groupId>
  74. <artifactId>sip-server</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.fastbee</groupId>
  78. <artifactId>fastbee-http</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.yomahub</groupId>
  82. <artifactId>liteflow-core</artifactId>
  83. <version>${liteflow.version}</version>
  84. </dependency>
  85. <!-- 通知配置模块 -->
  86. <dependency>
  87. <groupId>com.fastbee</groupId>
  88. <artifactId>fastbee-notify-web</artifactId>
  89. </dependency>
  90. <!-- 通知api模块 -->
  91. <dependency>
  92. <groupId>com.fastbee</groupId>
  93. <artifactId>fastbee-notify-core</artifactId>
  94. </dependency>
  95. <!-- oauth2.0 -->
  96. <dependency>
  97. <groupId>com.fastbee</groupId>
  98. <artifactId>fastbee-oauth</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.github.ben-manes.caffeine</groupId>
  102. <artifactId>caffeine</artifactId>
  103. </dependency>
  104. <!-- &lt;!&ndash; 小度音箱 &ndash;&gt;-->
  105. <!-- <dependency>-->
  106. <!-- <groupId>com.fastbee</groupId>-->
  107. <!-- <artifactId>fastbee-link-dueros</artifactId>-->
  108. <!-- </dependency>-->
  109. <!-- 组态模块 -->
  110. <dependency>
  111. <groupId>com.fastbee</groupId>
  112. <artifactId>fastbee-scada</artifactId>
  113. <version>2.6.0</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.fastbee</groupId>
  117. <artifactId>fastbee-common</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.fastbee</groupId>
  121. <artifactId>fastbee-common-extend</artifactId>
  122. </dependency>
  123. </dependencies>
  124. <build>
  125. <plugins>
  126. <plugin>
  127. <groupId>org.springframework.boot</groupId>
  128. <artifactId>spring-boot-maven-plugin</artifactId>
  129. <version>2.1.1.RELEASE</version>
  130. <configuration>
  131. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  132. </configuration>
  133. <executions>
  134. <execution>
  135. <goals>
  136. <goal>repackage</goal>
  137. </goals>
  138. </execution>
  139. </executions>
  140. </plugin>
  141. <plugin>
  142. <groupId>org.apache.maven.plugins</groupId>
  143. <artifactId>maven-war-plugin</artifactId>
  144. <version>3.1.0</version>
  145. <configuration>
  146. <failOnMissingWebXml>false</failOnMissingWebXml>
  147. <warName>${project.artifactId}</warName>
  148. </configuration>
  149. </plugin>
  150. </plugins>
  151. <finalName>${project.artifactId}</finalName>
  152. </build>
  153. </project>