pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  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. <!-- velocity模板引擎 -->
  49. <dependency>
  50. <groupId>org.apache.velocity</groupId>
  51. <artifactId>velocity-engine-core</artifactId>
  52. </dependency>
  53. <!-- freemarker 模板引擎-->
  54. <dependency>
  55. <groupId>org.freemarker</groupId>
  56. <artifactId>freemarker</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. </dependency>
  62. <!-- fastjson -->
  63. <dependency>
  64. <groupId>com.alibaba</groupId>
  65. <artifactId>fastjson</artifactId>
  66. </dependency>
  67. <!-- openoffice -->
  68. <dependency>
  69. <groupId>com.artofsolving</groupId>
  70. <artifactId>jodconverter</artifactId>
  71. <version>2.2.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>fr.opensagres.xdocreport</groupId>
  75. <artifactId>fr.opensagres.poi.xwpf.converter.pdf-gae</artifactId>
  76. <version>2.0.1</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.artofsolving</groupId>
  80. <artifactId>jodconverter-core-3.0.jar</artifactId>
  81. <version>1.0</version>
  82. <scope>system</scope>
  83. <systemPath>${basedir}/src/main/resources/lib/jodconverter-core-3.0.jar</systemPath>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.dingtalk</groupId>
  87. <artifactId>taobao-sdk-java-auto_1479188381469-20210623.jar</artifactId>
  88. <version>1.0</version>
  89. <scope>system</scope>
  90. <systemPath>${basedir}/src/main/resources/lib/taobao-sdk-java-auto_1479188381469-20210623.jar</systemPath>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.aliyun</groupId>
  94. <artifactId>dingtalk</artifactId>
  95. <version>1.1.50</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-data-redis</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.baidu.aip</groupId>
  103. <artifactId>java-sdk</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-test</artifactId>
  108. </dependency>
  109. <!--开启aop支持-->
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-starter-aop</artifactId>
  113. <exclusions>
  114. <exclusion>
  115. <groupId>org.springframework.boot</groupId>
  116. <artifactId>spring-boot-starter-logging</artifactId>
  117. </exclusion>
  118. </exclusions>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.aspectj</groupId>
  122. <artifactId>aspectjweaver</artifactId>
  123. </dependency>
  124. <!-- tess4j相关依赖 -->
  125. <!-- https://mvnrepository.com/artifact/net.sourceforge.tess4j/tess4j -->
  126. <dependency>
  127. <groupId>net.sourceforge.tess4j</groupId>
  128. <artifactId>tess4j</artifactId>
  129. </dependency>
  130. <!--手动引入opencv 否则无法maven打包-->
  131. <dependency>
  132. <groupId>org.opencv</groupId>
  133. <artifactId>opencv</artifactId>
  134. <version>4.2.0</version>
  135. <scope>system</scope>
  136. <systemPath>${basedir}/opencv/opencv-420.jar</systemPath>
  137. </dependency>
  138. <!--微信模版消息推送三方sdk-->
  139. <dependency>
  140. <groupId>com.github.binarywang</groupId>
  141. <artifactId>weixin-java-mp</artifactId>
  142. <version>3.3.0</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.aliyun</groupId>
  146. <artifactId>dysmsapi20170525</artifactId>
  147. <version>2.0.4</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.springframework.boot</groupId>
  151. <artifactId>spring-boot-configuration-processor</artifactId>
  152. <optional>true</optional>
  153. </dependency>
  154. <!-- 获取客户端信息 -->
  155. <!-- https://mvnrepository.com/artifact/eu.bitwalker/UserAgentUtils -->
  156. <dependency>
  157. <groupId>eu.bitwalker</groupId>
  158. <artifactId>UserAgentUtils</artifactId>
  159. <version>1.21</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.jxls</groupId>
  163. <artifactId>jxls</artifactId>
  164. <version>2.6.0</version>
  165. <exclusions>
  166. <exclusion>
  167. <groupId>ch.qos.logback</groupId>
  168. <artifactId>logback-core</artifactId>
  169. </exclusion>
  170. </exclusions>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.jxls</groupId>
  174. <artifactId>jxls-poi</artifactId>
  175. <version>1.2.0</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>fr.opensagres.xdocreport</groupId>
  179. <artifactId>fr.opensagres.xdocreport.core</artifactId>
  180. <version>2.0.2</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>fr.opensagres.xdocreport</groupId>
  184. <artifactId>fr.opensagres.xdocreport.document</artifactId>
  185. <version>2.0.2</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>fr.opensagres.xdocreport</groupId>
  189. <artifactId>fr.opensagres.xdocreport.template</artifactId>
  190. <version>2.0.2</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>fr.opensagres.xdocreport</groupId>
  194. <artifactId>fr.opensagres.xdocreport.document.docx</artifactId>
  195. <version>2.0.2</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>fr.opensagres.xdocreport</groupId>
  199. <artifactId>fr.opensagres.xdocreport.template.freemarker</artifactId>
  200. <version>2.0.2</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.freemarker</groupId>
  204. <artifactId>freemarker</artifactId>
  205. <version>2.3.23</version>
  206. </dependency>
  207. <dependency>
  208. <groupId>commons-io</groupId>
  209. <artifactId>commons-io</artifactId>
  210. <version>2.5</version>
  211. </dependency>
  212. </dependencies>
  213. <build>
  214. <plugins>
  215. <plugin>
  216. <groupId>org.springframework.boot</groupId>
  217. <artifactId>spring-boot-maven-plugin</artifactId>
  218. <configuration>
  219. <includeSystemScope>true</includeSystemScope>
  220. </configuration>
  221. </plugin>
  222. </plugins>
  223. <!-- <resources>-->
  224. <!-- &lt;!&ndash; 打包时只保留如下文件为配置文件 &ndash;&gt;-->
  225. <!-- <resource>-->
  226. <!-- <directory>src/main/resources</directory>-->
  227. <!-- <includes>-->
  228. <!-- <include>application.yml</include>-->
  229. <!-- </includes>-->
  230. <!-- </resource>-->
  231. <!-- </resources>-->
  232. </build>
  233. <!--配置阿里云仓库-->
  234. <repositories>
  235. <repository>
  236. <id>public</id>
  237. <name>aliyun nexus</name>
  238. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  239. <releases>
  240. <enabled>true</enabled>
  241. </releases>
  242. <snapshots>
  243. <enabled>false</enabled>
  244. </snapshots>
  245. </repository>
  246. <repository>
  247. <id>bintray-qcloud-maven-repo</id>
  248. <name>qcloud-maven-repo</name>
  249. <url>https://dl.bintray.com/qcloud/maven-repo/</url>
  250. <layout>default</layout>
  251. <releases>
  252. <enabled>true</enabled>
  253. </releases>
  254. <snapshots>
  255. <enabled>false</enabled>
  256. </snapshots>
  257. </repository>
  258. </repositories>
  259. <pluginRepositories>
  260. <pluginRepository>
  261. <id>public</id>
  262. <name>aliyun nexus</name>
  263. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  264. <releases>
  265. <enabled>true</enabled>
  266. </releases>
  267. <snapshots>
  268. <enabled>false</enabled>
  269. </snapshots>
  270. </pluginRepository>
  271. </pluginRepositories>
  272. </project>