pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. <groupId>rock.star.idea</groupId>
  7. <artifactId>idea_wx_zhifa</artifactId>
  8. <version>0.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>oa-base</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <!-- Rock 工程依赖 -->
  15. <dependency>
  16. <groupId>com.rockstar.anticontrol</groupId>
  17. <artifactId>rock-frame</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.rockstar.anticontrol</groupId>
  21. <artifactId>rock-system</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.rockstar.anticontrol</groupId>
  25. <artifactId>rock-ops</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.rockstar.anticontrol</groupId>
  29. <artifactId>rock-flow</artifactId>
  30. </dependency>
  31. <!-- SpringBoot集成mybatis框架 -->
  32. <dependency>
  33. <groupId>org.mybatis.spring.boot</groupId>
  34. <artifactId>mybatis-spring-boot-starter</artifactId>
  35. <version>${mybatis.version}</version>
  36. </dependency>
  37. <!-- 文件上传依赖 -->
  38. <dependency>
  39. <groupId>commons-io</groupId>
  40. <artifactId>commons-io</artifactId>
  41. <version>1.3.2</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>commons-fileupload</groupId>
  45. <artifactId>commons-fileupload</artifactId>
  46. <version>1.2.1</version>
  47. </dependency>
  48. <!--Alibaba-Excel-->
  49. <!-- <dependency>-->
  50. <!-- <groupId>com.alibaba</groupId>-->
  51. <!-- <artifactId>easyexcel</artifactId>-->
  52. <!-- <version>3.0.0-beta1</version>-->
  53. <!-- &lt;!&ndash;<version>2.2.4</version>&ndash;&gt;-->
  54. <!-- </dependency>-->
  55. <!--读取excel文件-->
  56. <!--<dependency>-->
  57. <!--<groupId>org.apache.poi</groupId>-->
  58. <!--<artifactId>poi</artifactId>-->
  59. <!--<version>4.1.2</version>-->
  60. <!--</dependency>-->
  61. <!--<dependency>-->
  62. <!--<groupId>org.apache.poi</groupId>-->
  63. <!--<artifactId>ooxml-schemas</artifactId>-->
  64. <!--<version>1.4</version>-->
  65. <!--</dependency>-->
  66. <!--<dependency>-->
  67. <!--<groupId>org.apache.poi</groupId>-->
  68. <!--<artifactId>poi-ooxml</artifactId>-->
  69. <!--<version>4.1.2</version>-->
  70. <!--</dependency>-->
  71. <!--Word模板引擎,基于Microsoft Word模板和数据生成新的文档-->
  72. <dependency>
  73. <groupId>com.deepoove</groupId>
  74. <artifactId>poi-tl</artifactId>
  75. <version>1.9.1</version>
  76. </dependency>
  77. <!--Alibaba-Excel-->
  78. <dependency>
  79. <groupId>com.alibaba</groupId>
  80. <artifactId>easyexcel</artifactId>
  81. <version>2.2.7</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>net.sf.json-lib</groupId>
  85. <artifactId>json-lib</artifactId>
  86. <version>2.4</version>
  87. <classifier>jdk15</classifier>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.java-websocket</groupId>
  91. <artifactId>Java-WebSocket</artifactId>
  92. <version>1.4.0</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.projectlombok</groupId>
  96. <artifactId>lombok</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>cn.hutool</groupId>
  100. <artifactId>hutool-all</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.tomitribe</groupId>
  104. <artifactId>tomitribe-http-signatures</artifactId>
  105. <version>1.0</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.gateway-sdk</groupId>
  109. <artifactId>gateway-sdk</artifactId>
  110. <version>2.6.8</version>
  111. </dependency>
  112. </dependencies>
  113. <build>
  114. <plugins>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-compiler-plugin</artifactId>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.mybatis.generator</groupId>
  121. <artifactId>mybatis-generator-maven-plugin</artifactId>
  122. <version>1.3.7</version>
  123. <configuration>
  124. <!--允许移动生成的文件 -->
  125. <verbose>false</verbose>
  126. <!--允许覆盖生成的文件 -->
  127. <overwrite>false</overwrite>
  128. <!--配置文件的路径 -->
  129. <configurationFile>src/main/resources/mybatis-generator.xml</configurationFile>
  130. </configuration>
  131. <dependencies>
  132. <dependency>
  133. <groupId>mysql</groupId>
  134. <artifactId>mysql-connector-java</artifactId>
  135. <version>${mysql.version}</version>
  136. </dependency>
  137. </dependencies>
  138. </plugin>
  139. </plugins>
  140. </build>
  141. </project>