pom.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.5.7</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.qy</groupId>
  12. <artifactId>workSheetSystem</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>workSheetSystem</name>
  15. <description>workSheetSystem</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  21. <dependency>
  22. <groupId>cn.hutool</groupId>
  23. <artifactId>hutool-all</artifactId>
  24. <version>5.8.17</version>
  25. <exclusions>
  26. <exclusion>
  27. <groupId>org.junit.vintage</groupId>
  28. <artifactId>junit-vintage-engine</artifactId>
  29. </exclusion>
  30. </exclusions>
  31. </dependency>
  32. <!--mysql数据库驱动-->
  33. <!-- <dependency>-->
  34. <!-- <groupId>mysql</groupId>-->
  35. <!-- <artifactId>mysql-connector-java</artifactId>-->
  36. <!-- <scope>runtime</scope>-->
  37. <!-- </dependency>-->
  38. <!-- <dependency>-->
  39. <!-- <groupId>com.alibaba</groupId>-->
  40. <!-- <artifactId>druid-spring-boot-starter</artifactId>-->
  41. <!-- <version>1.1.23</version>-->
  42. <!-- </dependency>-->
  43. <dependency>
  44. <groupId>log4j</groupId>
  45. <artifactId>log4j</artifactId>
  46. <version>1.2.17</version>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>druid</artifactId>
  52. <version>1.2.6</version>
  53. </dependency>
  54. <!--整合Shiro安全框架-->
  55. <dependency>
  56. <groupId>org.apache.shiro</groupId>
  57. <artifactId>shiro-spring</artifactId>
  58. <version>1.7.1</version>
  59. </dependency>
  60. <!--集成jwt实现token认证-->
  61. <dependency>
  62. <groupId>com.auth0</groupId>
  63. <artifactId>java-jwt</artifactId>
  64. <version>3.2.0</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.google.guava</groupId>
  68. <artifactId>guava</artifactId>
  69. <version>33.2.0-jre</version>
  70. </dependency>
  71. <!--<dependency>
  72. <groupId>javax.mail</groupId>
  73. <artifactId>mail</artifactId>
  74. <version>1.6.2</version>
  75. </dependency> -->
  76. <!-- 集成swagger接口文档 -->
  77. <dependency>
  78. <groupId>io.springfox</groupId>
  79. <artifactId>springfox-swagger-ui</artifactId>
  80. <version>2.9.2</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>io.springfox</groupId>
  84. <artifactId>springfox-swagger2</artifactId>
  85. <version>2.9.2</version>
  86. </dependency>
  87. <!--SpringBoot 的aop 模块-->
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-aop</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  95. </dependency>
  96. <!-- <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-web</artifactId>
  99. </dependency>-->
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-web</artifactId>
  103. <exclusions>
  104. <exclusion>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-starter-tomcat</artifactId>
  107. </exclusion>
  108. </exclusions>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-starter-undertow</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.mybatis.spring.boot</groupId>
  116. <artifactId>mybatis-spring-boot-starter</artifactId>
  117. <version>2.2.2</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-starter-test</artifactId>
  122. <scope>test</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-starter</artifactId>
  127. </dependency>
  128. <!-- <dependency>
  129. <groupId>com.oracle</groupId>
  130. <artifactId>ojdbc8</artifactId>
  131. <version>12.2.0.1.0</version>
  132. <scope>runtime</scope>
  133. </dependency>-->
  134. <dependency>
  135. <groupId>com.microsoft.sqlserver</groupId>
  136. <artifactId>mssql-jdbc</artifactId>
  137. <version>12.8.1.jre8</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.projectlombok</groupId>
  141. <artifactId>lombok</artifactId>
  142. <optional>true</optional>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.github.pagehelper</groupId>
  146. <artifactId>pagehelper</artifactId>
  147. <version>5.3.3</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.apache.commons</groupId>
  151. <artifactId>commons-lang3</artifactId>
  152. <version>3.7</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.github.pagehelper</groupId>
  156. <artifactId>pagehelper-spring-boot-starter</artifactId>
  157. <version>1.4.7</version>
  158. </dependency>
  159. <!-- https://mvnrepository.com/artifact/axis/axis -->
  160. <dependency>
  161. <groupId>axis</groupId>
  162. <artifactId>axis</artifactId>
  163. <version>1.4</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>junit</groupId>
  167. <artifactId>junit</artifactId>
  168. </dependency>
  169. <dependency>
  170. <groupId>ch.qos.logback</groupId>
  171. <artifactId>logback-classic</artifactId>
  172. <version>1.2.3</version> <!-- 使用最新的版本 -->
  173. </dependency>
  174. <dependency>
  175. <groupId>com.kingdee.ksql</groupId> <!--自定义-->
  176. <artifactId>ksql-sdk</artifactId> <!--自定义-->
  177. <version>0.0.1-SNAPSHOT</version> <!--自定义-->
  178. <scope>system</scope>
  179. <!--jar包路径 注意:这里用的是 {pom.basedir}-->
  180. <systemPath>${pom.basedir}/lib/ksql.jar</systemPath>
  181. </dependency>
  182. </dependencies>
  183. <build>
  184. <plugins>
  185. <plugin>
  186. <groupId>org.apache.maven.plugins</groupId>
  187. <artifactId>maven-site-plugin</artifactId>
  188. <version>3.8.2</version>
  189. </plugin>
  190. <plugin>
  191. <groupId>org.springframework.boot</groupId>
  192. <artifactId>spring-boot-maven-plugin</artifactId>
  193. <configuration>
  194. <excludes>
  195. <exclude>
  196. <groupId>org.projectlombok</groupId>
  197. <artifactId>lombok</artifactId>
  198. </exclude>
  199. </excludes>
  200. <includeSystemScope>true</includeSystemScope>
  201. </configuration>
  202. </plugin>
  203. <plugin>
  204. <groupId>org.asciidoctor</groupId>
  205. <artifactId>asciidoctor-maven-plugin</artifactId>
  206. <version>1.5.6</version>
  207. <configuration>
  208. <!--上一步生成的asciidoc文件路径-->
  209. <sourceDirectory>src/docs/asciidoc/generated</sourceDirectory>
  210. <!--HTML生成路径-->
  211. <outputDirectory>src/docs/asciidoc/html</outputDirectory>
  212. <headerFooter>true</headerFooter>
  213. <doctype>book</doctype>
  214. <backend>html</backend>
  215. <sourceHighlighter>coderay</sourceHighlighter>
  216. <attributes>
  217. <!--菜单栏在左边-->
  218. <toc>left</toc>
  219. <!--多标题排列-->
  220. <toclevels>3</toclevels>
  221. <!--自动打数字序号-->
  222. <sectnums>true</sectnums>
  223. </attributes>
  224. </configuration>
  225. </plugin>
  226. </plugins>
  227. <resources>
  228. <resource>
  229. <directory>src/main/java</directory>
  230. <excludes>
  231. <exclude>**/*.java</exclude>
  232. </excludes>
  233. </resource>
  234. <resource>
  235. <directory>src/main/resources</directory>
  236. <includes>
  237. <include>**/*.*</include>
  238. </includes>
  239. </resource>
  240. </resources>
  241. </build>
  242. </project>