pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.jsh</groupId>
  6. <artifactId>jshERP-boot</artifactId>
  7. <version>3.5-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>jshERP-boot</name>
  10. <description>富贵ERP</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.0.0.RELEASE</version>
  15. </parent>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.gitee.starblues</groupId>
  24. <artifactId>springboot-plugin-framework</artifactId>
  25. <version>2.2.1-RELEASE</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.gitee.starblues</groupId>
  29. <artifactId>springboot-plugin-framework-extension-mybatis</artifactId>
  30. <version>2.2.1-RELEASE</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-test</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.alibaba</groupId>
  43. <artifactId>fastjson</artifactId>
  44. <version>1.2.83</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>mysql</groupId>
  48. <artifactId>mysql-connector-java</artifactId>
  49. <version>8.0.33</version>
  50. </dependency>
  51. <!--http-->
  52. <dependency>
  53. <groupId>org.apache.httpcomponents</groupId>
  54. <artifactId>httpclient</artifactId>
  55. <version>4.5.2</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>net.sourceforge.jexcelapi</groupId>
  59. <artifactId>jxl</artifactId>
  60. <version>2.6.12</version>
  61. </dependency>
  62. <!-- lombok -->
  63. <dependency>
  64. <groupId>org.projectlombok</groupId>
  65. <artifactId>lombok</artifactId>
  66. <version>1.18.12</version>
  67. </dependency>
  68. <!-- 日志 -->
  69. <dependency>
  70. <groupId>org.apache.logging.log4j</groupId>
  71. <artifactId>log4j-to-slf4j</artifactId>
  72. <version>2.15.0</version>
  73. <scope>compile</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.slf4j</groupId>
  77. <artifactId>jul-to-slf4j</artifactId>
  78. <version>1.7.25</version>
  79. <scope>compile</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.baomidou</groupId>
  83. <artifactId>mybatis-plus-boot-starter</artifactId>
  84. <version>3.5.2</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-redis</artifactId>
  89. <version>1.4.1.RELEASE</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>io.springfox</groupId>
  93. <artifactId>springfox-swagger2</artifactId>
  94. <version>2.7.0</version>
  95. <scope>compile</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.github.xiaoymin</groupId>
  99. <artifactId>swagger-bootstrap-ui</artifactId>
  100. <version>1.6</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.aliyun.oss</groupId>
  104. <artifactId>aliyun-sdk-oss</artifactId>
  105. <version>3.10.1</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.itextpdf</groupId>
  109. <artifactId>itextpdf</artifactId>
  110. <version>5.5.13.1</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.apache.commons</groupId>
  114. <artifactId>commons-io</artifactId>
  115. <version>1.3.2</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.belerweb</groupId>
  119. <artifactId>pinyin4j</artifactId>
  120. <version>2.5.1</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.github.pagehelper</groupId>
  124. <artifactId>pagehelper-spring-boot-starter</artifactId>
  125. <version>1.2.13</version>
  126. </dependency>
  127. <!--常用工具类 -->
  128. <dependency>
  129. <groupId>org.apache.commons</groupId>
  130. <artifactId>commons-lang3</artifactId>
  131. <version>3.12.0</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.sun.mail</groupId>
  135. <artifactId>jakarta.mail</artifactId>
  136. <version>1.6.5</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>cn.hutool</groupId>
  140. <artifactId>hutool-all</artifactId>
  141. <version>5.8.25</version>
  142. </dependency>
  143. <!-- 二维码 -->
  144. <dependency>
  145. <groupId>com.google.zxing</groupId>
  146. <artifactId>core</artifactId>
  147. <version>3.4.1</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>com.google.zxing</groupId>
  151. <artifactId>javase</artifactId>
  152. <version>3.4.1</version>
  153. </dependency>
  154. </dependencies>
  155. <build>
  156. <finalName>jshERP</finalName>
  157. <plugins>
  158. <plugin>
  159. <groupId>org.springframework.boot</groupId>
  160. <artifactId>spring-boot-maven-plugin</artifactId>
  161. <version>2.0.3.RELEASE</version>
  162. <executions>
  163. <execution>
  164. <id>build-info</id>
  165. <phase>generate-sources</phase>
  166. <goals>
  167. <goal>build-info</goal>
  168. </goals>
  169. </execution>
  170. <execution>
  171. <id>repackage</id>
  172. <phase>package</phase>
  173. <goals>
  174. <goal>repackage</goal>
  175. </goals>
  176. <configuration>
  177. <mainClass>com.jsh.erp.ErpApplication</mainClass>
  178. <layout>JAR</layout>
  179. </configuration>
  180. </execution>
  181. </executions>
  182. </plugin>
  183. <plugin>
  184. <groupId>org.apache.maven.plugins</groupId>
  185. <artifactId>maven-assembly-plugin</artifactId>
  186. <version>2.5.1</version>
  187. <executions>
  188. <execution>
  189. <id>make-zip</id>
  190. <phase>package</phase>
  191. <goals>
  192. <goal>single</goal>
  193. </goals>
  194. <configuration>
  195. <descriptors>
  196. <descriptor>src/main/assembly/assembly.xml</descriptor>
  197. </descriptors>
  198. <outputDirectory>./dist</outputDirectory>
  199. </configuration>
  200. </execution>
  201. </executions>
  202. </plugin>
  203. <plugin>
  204. <groupId>org.mybatis.generator</groupId>
  205. <artifactId>mybatis-generator-maven-plugin</artifactId>
  206. <version>1.4.0</version>
  207. <configuration>
  208. <configurationFile>${basedir}/src/test/resources/generatorConfig.xml</configurationFile>
  209. <verbose>true</verbose>
  210. <overwrite>true</overwrite>
  211. </configuration>
  212. </plugin>
  213. <plugin>
  214. <groupId>org.apache.maven.plugins</groupId>
  215. <artifactId>maven-compiler-plugin</artifactId>
  216. <version>3.7.0</version>
  217. <configuration>
  218. <source>1.8</source>
  219. <target>1.8</target>
  220. <skip>true</skip>
  221. </configuration>
  222. </plugin>
  223. </plugins>
  224. </build>
  225. </project>