pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  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.3.3.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.ruisitch</groupId>
  12. <artifactId>rsbi-os</artifactId>
  13. <version>4.7</version>
  14. <packaging>war</packaging>
  15. <name>rsbi-os</name>
  16. <description>rsbi开源版</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <mysql.version>8.0.11</mysql.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.mybatis.spring.boot</groupId>
  28. <artifactId>mybatis-spring-boot-starter</artifactId>
  29. <version>2.1.3</version>
  30. </dependency>
  31. <!-- jdbcTemplate 依赖 -->
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-jdbc</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>mysql</groupId>
  38. <artifactId>mysql-connector-java</artifactId>
  39. <version>${mysql.version}</version>
  40. </dependency>
  41. <!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-core -->
  42. <dependency>
  43. <groupId>org.apache.shiro</groupId>
  44. <artifactId>shiro-core</artifactId>
  45. <version>1.7.1</version>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-web -->
  48. <dependency>
  49. <groupId>org.apache.shiro</groupId>
  50. <artifactId>shiro-web</artifactId>
  51. <version>1.7.1</version>
  52. </dependency>
  53. <!-- https://mvnrepository.com/artifact/org.apache.shiro/shiro-spring -->
  54. <dependency>
  55. <groupId>org.apache.shiro</groupId>
  56. <artifactId>shiro-spring</artifactId>
  57. <version>1.7.1</version>
  58. </dependency>
  59. <!-- 本地jar -->
  60. <dependency>
  61. <groupId>com.rsbi.ext</groupId>
  62. <artifactId>ext3</artifactId>
  63. <version>1.5</version>
  64. <scope>system</scope>
  65. <systemPath>${project.basedir}/libs/ext3-1.5.jar</systemPath>
  66. </dependency>
  67. <!-- 本地 oracle jar -->
  68. <dependency>
  69. <groupId>com.oracle</groupId>
  70. <artifactId>ojdbc6</artifactId>
  71. <version>12.1.0.2</version>
  72. <scope>system</scope>
  73. <systemPath>${project.basedir}/libs/ojdbc6-12.1.0.2.jar</systemPath>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.ibm</groupId>
  77. <artifactId>db2jcc</artifactId>
  78. <version>1.0</version>
  79. <scope>system</scope>
  80. <systemPath>${project.basedir}/libs/db2jcc-1.0.jar</systemPath>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.alibaba</groupId>
  84. <artifactId>fastjson</artifactId>
  85. <version>1.2.25</version>
  86. </dependency>
  87. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  88. <dependency>
  89. <groupId>commons-io</groupId>
  90. <artifactId>commons-io</artifactId>
  91. <version>2.8.0</version>
  92. </dependency>
  93. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
  94. <dependency>
  95. <groupId>org.apache.commons</groupId>
  96. <artifactId>commons-collections4</artifactId>
  97. <version>4.4</version>
  98. </dependency>
  99. <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper -->
  100. <dependency>
  101. <groupId>com.github.pagehelper</groupId>
  102. <artifactId>pagehelper-spring-boot-starter</artifactId>
  103. <version>1.2.12</version>
  104. </dependency>
  105. <!-- https://mvnrepository.com/artifact/net.sourceforge.jexcelapi/jxl -->
  106. <dependency>
  107. <groupId>net.sourceforge.jexcelapi</groupId>
  108. <artifactId>jxl</artifactId>
  109. <version>2.6.12</version>
  110. </dependency>
  111. <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload -->
  112. <dependency>
  113. <groupId>commons-fileupload</groupId>
  114. <artifactId>commons-fileupload</artifactId>
  115. <version>1.3.3</version>
  116. </dependency>
  117. <!-- https://mvnrepository.com/artifact/commons-digester/commons-digester -->
  118. <dependency>
  119. <groupId>commons-digester</groupId>
  120. <artifactId>commons-digester</artifactId>
  121. <version>2.1</version>
  122. </dependency>
  123. <!-- https://mvnrepository.com/artifact/org.apache.velocity/velocity -->
  124. <dependency>
  125. <groupId>org.apache.velocity</groupId>
  126. <artifactId>velocity</artifactId>
  127. <version>1.6.4</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.poi</groupId>
  131. <artifactId>poi</artifactId>
  132. <version>3.15</version>
  133. </dependency>
  134. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  135. <dependency>
  136. <groupId>org.apache.poi</groupId>
  137. <artifactId>poi-ooxml</artifactId>
  138. <version>3.15</version>
  139. </dependency>
  140. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
  141. <dependency>
  142. <groupId>org.apache.poi</groupId>
  143. <artifactId>poi-ooxml-schemas</artifactId>
  144. <version>3.15</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.poi</groupId>
  148. <artifactId>ooxml-schemas</artifactId>
  149. <version>1.3</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.apache.poi</groupId>
  153. <artifactId>poi-scratchpad</artifactId>
  154. <version>3.15</version>
  155. </dependency>
  156. <!--读取pdf内容 -->
  157. <!-- https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox -->
  158. <dependency>
  159. <groupId>org.apache.pdfbox</groupId>
  160. <artifactId>pdfbox</artifactId>
  161. <version>2.0.4</version>
  162. </dependency>
  163. <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
  164. <dependency>
  165. <groupId>com.itextpdf</groupId>
  166. <artifactId>itextpdf</artifactId>
  167. <version>5.5.0</version>
  168. </dependency>
  169. <!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian -->
  170. <dependency>
  171. <groupId>com.itextpdf</groupId>
  172. <artifactId>itext-asian</artifactId>
  173. <version>5.2.0</version>
  174. </dependency>
  175. <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
  176. <dependency>
  177. <groupId>org.postgresql</groupId>
  178. <artifactId>postgresql</artifactId>
  179. <version>42.2.5</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.springframework.session</groupId>
  183. <artifactId>spring-session-core</artifactId>
  184. <version>2.1.4.RELEASE</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.xerial</groupId>
  188. <artifactId>sqlite-jdbc</artifactId>
  189. <version>3.28.0</version>
  190. </dependency>
  191. <!-- https://mvnrepository.com/artifact/org.eclipse.birt.runtime.3_7_1/org.mozilla.javascript -->
  192. <dependency>
  193. <groupId>org.eclipse.birt.runtime.3_7_1</groupId>
  194. <artifactId>org.mozilla.javascript</artifactId>
  195. <version>1.7.2</version>
  196. </dependency>
  197. <!-- 二维码生成 -->
  198. <dependency>
  199. <groupId>com.google.zxing</groupId>
  200. <artifactId>javase</artifactId>
  201. <version>3.3.0</version>
  202. </dependency>
  203. <!-- https://mvnrepository.com/artifact/com.clickhouse/clickhouse-jdbc -->
  204. <dependency>
  205. <groupId>com.clickhouse</groupId>
  206. <artifactId>clickhouse-jdbc</artifactId>
  207. <version>0.3.2-patch9</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>javax.servlet.jsp</groupId>
  211. <artifactId>jsp-api</artifactId>
  212. <version>2.2</version>
  213. <scope>provided</scope>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.projectlombok</groupId>
  217. <artifactId>lombok</artifactId>
  218. <optional>true</optional>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.springframework.boot</groupId>
  222. <artifactId>spring-boot-starter-tomcat</artifactId>
  223. <scope>provided</scope>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.springframework.boot</groupId>
  227. <artifactId>spring-boot-starter-test</artifactId>
  228. <scope>test</scope>
  229. <exclusions>
  230. <exclusion>
  231. <groupId>org.junit.vintage</groupId>
  232. <artifactId>junit-vintage-engine</artifactId>
  233. </exclusion>
  234. </exclusions>
  235. </dependency>
  236. </dependencies>
  237. <build>
  238. <resources>
  239. <resource>
  240. <directory>src/main/java</directory>
  241. <includes>
  242. <include>**/*.yml</include>
  243. <include>**/*.properties</include>
  244. <include>**/*.xml</include>
  245. </includes>
  246. <filtering>false</filtering>
  247. </resource>
  248. <resource>
  249. <directory>src/main/resources</directory>
  250. <includes>
  251. <include>**/*.yml</include>
  252. <include>**/*.properties</include>
  253. <include>**/*.xml</include>
  254. <include>**/*.sqlite3</include>
  255. </includes>
  256. <filtering>false</filtering>
  257. </resource>
  258. </resources>
  259. <plugins>
  260. <plugin>
  261. <groupId>org.springframework.boot</groupId>
  262. <artifactId>spring-boot-maven-plugin</artifactId>
  263. <configuration>
  264. <includeSystemScope>true</includeSystemScope>
  265. </configuration>
  266. </plugin>
  267. <!-- war打包插件 -->
  268. <plugin>
  269. <groupId>org.apache.maven.plugins</groupId>
  270. <artifactId>maven-war-plugin</artifactId>
  271. <configuration>
  272. <webResources>
  273. <resource>
  274. <directory>${project.basedir}/libs</directory>
  275. <targetPath>WEB-INF/lib</targetPath>
  276. <filtering>false</filtering>
  277. <includes>
  278. <include>**/*.jar</include>
  279. </includes>
  280. </resource>
  281. <resource>
  282. <directory>public</directory>
  283. <targetPath>/</targetPath>
  284. </resource>
  285. </webResources>
  286. </configuration>
  287. </plugin>
  288. </plugins>
  289. </build>
  290. </project>