pom.xml 8.8 KB

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