pom.xml 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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>formulahousekeeper</artifactId>
  7. <groupId>com.hssx.parent</groupId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.hssx.parent</groupId>
  12. <artifactId>ops-platform</artifactId>
  13. <version>1.0</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-web</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-actuator</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.github.pagehelper</groupId>
  25. <artifactId>pagehelper-spring-boot-starter</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>mysql</groupId>
  29. <artifactId>mysql-connector-java</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.poi</groupId>
  33. <artifactId>poi</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.poi</groupId>
  37. <artifactId>poi-ooxml</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-boot-starter</artifactId>
  42. </dependency>
  43. <!-- mybatis-plus代码生成器依赖 -->
  44. <dependency>
  45. <groupId>com.baomidou</groupId>
  46. <artifactId>mybatis-plus-generator</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. </dependency>
  52. <!-- fastjson -->
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>fastjson</artifactId>
  56. </dependency>
  57. <!-- openoffice -->
  58. <dependency>
  59. <groupId>com.artofsolving</groupId>
  60. <artifactId>jodconverter</artifactId>
  61. <version>2.2.1</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>fr.opensagres.xdocreport</groupId>
  65. <artifactId>fr.opensagres.poi.xwpf.converter.pdf-gae</artifactId>
  66. <version>2.0.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-data-redis</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.baidu.aip</groupId>
  74. <artifactId>java-sdk</artifactId>
  75. </dependency>
  76. <!--开启aop支持-->
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-aop</artifactId>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-logging</artifactId>
  84. </exclusion>
  85. </exclusions>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.aspectj</groupId>
  89. <artifactId>aspectjweaver</artifactId>
  90. </dependency>
  91. <!-- tess4j相关依赖 -->
  92. <!-- https://mvnrepository.com/artifact/net.sourceforge.tess4j/tess4j -->
  93. <dependency>
  94. <groupId>net.sourceforge.tess4j</groupId>
  95. <artifactId>tess4j</artifactId>
  96. </dependency>
  97. <!--手动引入opencv 否则无法maven打包-->
  98. <dependency>
  99. <groupId>org.opencv</groupId>
  100. <artifactId>opencv</artifactId>
  101. <version>4.2.0</version>
  102. <scope>system</scope>
  103. <systemPath>${basedir}/opencv/opencv-420.jar</systemPath>
  104. </dependency>
  105. <!--微信模版消息推送三方sdk-->
  106. <dependency>
  107. <groupId>com.github.binarywang</groupId>
  108. <artifactId>weixin-java-mp</artifactId>
  109. <version>3.3.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.aliyun</groupId>
  113. <artifactId>dysmsapi20170525</artifactId>
  114. <version>2.0.4</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-configuration-processor</artifactId>
  119. <optional>true</optional>
  120. </dependency>
  121. <!-- 获取客户端信息 -->
  122. <!-- https://mvnrepository.com/artifact/eu.bitwalker/UserAgentUtils -->
  123. <dependency>
  124. <groupId>eu.bitwalker</groupId>
  125. <artifactId>UserAgentUtils</artifactId>
  126. <version>1.21</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.jxls</groupId>
  130. <artifactId>jxls</artifactId>
  131. <version>2.6.0</version>
  132. <exclusions>
  133. <exclusion>
  134. <groupId>ch.qos.logback</groupId>
  135. <artifactId>logback-core</artifactId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.jxls</groupId>
  141. <artifactId>jxls-poi</artifactId>
  142. <version>1.2.0</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>fr.opensagres.xdocreport</groupId>
  146. <artifactId>fr.opensagres.xdocreport.core</artifactId>
  147. <version>2.0.2</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>fr.opensagres.xdocreport</groupId>
  151. <artifactId>fr.opensagres.xdocreport.document</artifactId>
  152. <version>2.0.2</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>fr.opensagres.xdocreport</groupId>
  156. <artifactId>fr.opensagres.xdocreport.template</artifactId>
  157. <version>2.0.2</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>fr.opensagres.xdocreport</groupId>
  161. <artifactId>fr.opensagres.xdocreport.document.docx</artifactId>
  162. <version>2.0.2</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>fr.opensagres.xdocreport</groupId>
  166. <artifactId>fr.opensagres.xdocreport.template.freemarker</artifactId>
  167. <version>2.0.2</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.freemarker</groupId>
  171. <artifactId>freemarker</artifactId>
  172. <version>2.3.23</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>commons-io</groupId>
  176. <artifactId>commons-io</artifactId>
  177. <version>2.5</version>
  178. </dependency>
  179. </dependencies>
  180. <build>
  181. <plugins>
  182. <plugin>
  183. <groupId>org.springframework.boot</groupId>
  184. <artifactId>spring-boot-maven-plugin</artifactId>
  185. <configuration>
  186. <includeSystemScope>true</includeSystemScope>
  187. </configuration>
  188. </plugin>
  189. </plugins>
  190. <!-- <resources>-->
  191. <!-- &lt;!&ndash; 打包时只保留如下文件为配置文件 &ndash;&gt;-->
  192. <!-- <resource>-->
  193. <!-- <directory>src/main/resources</directory>-->
  194. <!-- <includes>-->
  195. <!-- <include>application.yml</include>-->
  196. <!-- </includes>-->
  197. <!-- </resource>-->
  198. <!-- </resources>-->
  199. </build>
  200. <!--配置阿里云仓库-->
  201. <repositories>
  202. <repository>
  203. <id>public</id>
  204. <name>aliyun nexus</name>
  205. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  206. <releases>
  207. <enabled>true</enabled>
  208. </releases>
  209. <snapshots>
  210. <enabled>false</enabled>
  211. </snapshots>
  212. </repository>
  213. <repository>
  214. <id>bintray-qcloud-maven-repo</id>
  215. <name>qcloud-maven-repo</name>
  216. <url>https://dl.bintray.com/qcloud/maven-repo/</url>
  217. <layout>default</layout>
  218. <releases>
  219. <enabled>true</enabled>
  220. </releases>
  221. <snapshots>
  222. <enabled>false</enabled>
  223. </snapshots>
  224. </repository>
  225. </repositories>
  226. <pluginRepositories>
  227. <pluginRepository>
  228. <id>public</id>
  229. <name>aliyun nexus</name>
  230. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  231. <releases>
  232. <enabled>true</enabled>
  233. </releases>
  234. <snapshots>
  235. <enabled>false</enabled>
  236. </snapshots>
  237. </pluginRepository>
  238. </pluginRepositories>
  239. </project>