后台管理系统Java代码

pom.xml 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  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. <modelVersion>4.0.0</modelVersion>
  6. <packaging>pom</packaging>
  7. <modules>
  8. <module>oa-app</module>
  9. </modules>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.1.7.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <repositories>
  17. <repository>
  18. <id>alimaven</id>
  19. <name>aliyun maven</name>
  20. <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
  21. <releases>
  22. <enabled>true</enabled>
  23. </releases>
  24. <snapshots>
  25. <enabled>true</enabled>
  26. </snapshots>
  27. </repository>
  28. </repositories>
  29. <groupId>com.css</groupId>
  30. <artifactId>oa</artifactId>
  31. <version>0.0.1-SNAPSHOT</version>
  32. <name>oa</name>
  33. <description>oa</description>
  34. <properties>
  35. <java.version>1.8</java.version>
  36. <dependency.scope>compile</dependency.scope>
  37. <server.release>nexus</server.release>
  38. <server.snapshot>snapshot</server.snapshot>
  39. <oa.version>1.0.0-SNAPSHOT</oa.version>
  40. <platform.version>1.5.6</platform.version>
  41. <workflow.version>10.3.7</workflow.version>
  42. <oa-component.version>1.1.0</oa-component.version>
  43. <repository.url>http://10.13.39.241:8089/repository/maven-public/</repository.url>
  44. <deploy.repository.release.url>http://10.13.39.241:8089/repository/maven-releases/</deploy.repository.release.url>
  45. <deploy.repository.snapshot.url>http://10.13.39.241:8089/repository/maven-snapshots/</deploy.repository.snapshot.url>
  46. </properties>
  47. <dependencies>
  48. <dependency>
  49. <groupId>org.jasig.cas.client</groupId>
  50. <artifactId>cas-client-core</artifactId>
  51. <version>3.5.1</version>
  52. </dependency>
  53. <!-- <dependency>-->
  54. <!-- <groupId>org.springframework.security</groupId>-->
  55. <!-- <artifactId>spring-security-core</artifactId>-->
  56. <!-- <version>4.1.0.RELEASE</version>-->
  57. <!-- </dependency>-->
  58. <!-- <dependency>-->
  59. <!-- <groupId>org.springframework.security</groupId>-->
  60. <!-- <artifactId>spring-security-config</artifactId>-->
  61. <!-- <version>4.1.0.RELEASE</version>-->
  62. <!-- </dependency>-->
  63. <!-- <dependency>-->
  64. <!-- <groupId>org.springframework.security</groupId>-->
  65. <!-- <artifactId>spring-security-web</artifactId>-->
  66. <!-- <version>4.1.0.RELEASE</version>-->
  67. <!-- </dependency>-->
  68. <!-- llg加的测试依赖-->
  69. <dependency>
  70. <groupId>junit</groupId>
  71. <artifactId>junit</artifactId>
  72. <version>4.12</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-test</artifactId>
  77. <version>2.1.7.RELEASE</version>
  78. </dependency>
  79. <!-- llg加的测试依赖 end-->
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter</artifactId>
  83. </dependency>
  84. <!--代码生成-->
  85. <dependency>
  86. <groupId>com.css.bpm</groupId>
  87. <artifactId>codegenerator</artifactId>
  88. <version>1.1.3-SNAPSHOT</version>
  89. </dependency>
  90. <!--流程-->
  91. <dependency>
  92. <groupId>com.css.bpm</groupId>
  93. <artifactId>workflow-app</artifactId>
  94. <version>${workflow.version}</version>
  95. </dependency>
  96. <!--oa组件-->
  97. <dependency>
  98. <groupId>com.css.oa</groupId>
  99. <artifactId>oa-component</artifactId>
  100. <version>${oa-component.version}</version>
  101. <scope>compile</scope>
  102. </dependency>
  103. <!--平台-->
  104. <dependency>
  105. <groupId>com.css.bpm</groupId>
  106. <artifactId>platform-app</artifactId>
  107. <version>${platform.version}</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.poi</groupId>
  111. <artifactId>poi</artifactId>
  112. <version>4.1.1</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.apache.poi</groupId>
  116. <artifactId>poi-ooxml-schemas</artifactId>
  117. <version>4.1.1</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.poi</groupId>
  121. <artifactId>poi-ooxml</artifactId>
  122. <version>4.1.1</version>
  123. </dependency>
  124. <!--axis-->
  125. <dependency>
  126. <groupId>org.apache.axis</groupId>
  127. <artifactId>axis</artifactId>
  128. <version>1.4</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>commons-discovery</groupId>
  132. <artifactId>commons-discovery</artifactId>
  133. <version>0.2</version>
  134. <exclusions>
  135. <exclusion>
  136. <groupId>commons-logging</groupId>
  137. <artifactId>commons-logging</artifactId>
  138. </exclusion>
  139. </exclusions>
  140. </dependency>
  141. <dependency>
  142. <groupId>wsdl4j</groupId>
  143. <artifactId>wsdl4j</artifactId>
  144. </dependency>
  145. <dependency>
  146. <groupId>axis</groupId>
  147. <artifactId>axis-jaxrpc</artifactId>
  148. <version>1.4</version>
  149. </dependency>
  150. <!--pkg-->
  151. <dependency>
  152. <groupId>com</groupId>
  153. <artifactId>css-dataexsys-pkg</artifactId>
  154. <version>3.1</version>
  155. <type>jar</type>
  156. </dependency>
  157. <dependency>
  158. <groupId>com</groupId>
  159. <artifactId>css-comm</artifactId>
  160. <version>1.1</version>
  161. </dependency>
  162. <!--jsonObject-->
  163. <dependency>
  164. <groupId>net.sf.json-lib</groupId>
  165. <artifactId>json-lib</artifactId>
  166. <version>2.4</version>
  167. <classifier>jdk15</classifier>
  168. </dependency>
  169. <dependency>
  170. <groupId>com.dm.jdbc</groupId>
  171. <artifactId>Dm7JdbcDriver17</artifactId>
  172. <version>1.7</version>
  173. </dependency>
  174. <!--网络请求的作用-->
  175. <dependency>
  176. <groupId>org.apache.httpcomponents</groupId>
  177. <artifactId>httpmime</artifactId>
  178. <version>4.5.9</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>css.slw</groupId>
  182. <artifactId>jwt</artifactId>
  183. <version>1.1</version>
  184. </dependency>
  185. <!-- 获取菜单所需jar包 -->
  186. <dependency>
  187. <groupId>com.google.code.gson</groupId>
  188. <artifactId>gson</artifactId>
  189. <version>2.8.5</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>com.nimbusds</groupId>
  193. <artifactId>nimbusds</artifactId>
  194. <version>6.5</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>com.alibaba</groupId>
  198. <artifactId>fastjson</artifactId>
  199. <version>1.2.62</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>net.minidev</groupId>
  203. <artifactId>accessors-smart</artifactId>
  204. <version>1.2</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>net.minidev</groupId>
  208. <artifactId>minidev</artifactId>
  209. <version>2.3</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>syslog</groupId>
  213. <artifactId>client</artifactId>
  214. <version>1.0</version>
  215. </dependency>
  216. <!--批量导入-->
  217. <dependency>
  218. <groupId>cn.afterturn</groupId>
  219. <artifactId>easypoi-web</artifactId>
  220. <version>4.1.3</version>
  221. </dependency>
  222. <dependency>
  223. <groupId>joda-time</groupId>
  224. <artifactId>joda-time</artifactId>
  225. <version>2.9.9</version>
  226. </dependency>
  227. <!-- 单点所需jar包 -->
  228. <dependency>
  229. <groupId>css-slw</groupId>
  230. <artifactId>baseUCclient</artifactId>
  231. <version>1.4</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.apache.commons</groupId>
  235. <artifactId>commons-pool2</artifactId>
  236. <version>2.4.2</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>redis.clients</groupId>
  240. <artifactId>jedis</artifactId>
  241. <version>2.9.0</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>com.esotericsoftware</groupId>
  245. <artifactId>kryo</artifactId>
  246. <version>4.0.0</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>spy</groupId>
  250. <artifactId>memcached</artifactId>
  251. <version>2.5.2.1</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>org.apache.httpcomponents</groupId>
  255. <artifactId>httpclient</artifactId>
  256. <version>4.5.9</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>org.webjars.npm</groupId>
  260. <artifactId>mem</artifactId>
  261. <version>1.1</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>commons-beanutils</groupId>
  265. <artifactId>commons-beanutils</artifactId>
  266. <version>1.9.3</version>
  267. </dependency>
  268. <dependency>
  269. <groupId>dm</groupId>
  270. <artifactId>DmJdbcDriver</artifactId>
  271. <version>1.8.0</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>commons-lang</groupId>
  275. <artifactId>commons-lang</artifactId>
  276. <version>2.6</version>
  277. </dependency>
  278. <!--导出-->
  279. <dependency>
  280. <groupId>org.apache.poi</groupId>
  281. <artifactId>poi</artifactId>
  282. <version>4.0.0</version>
  283. </dependency>
  284. <dependency>
  285. <groupId>org.apache.poi</groupId>
  286. <artifactId>poi-ooxml</artifactId>
  287. <version>4.0.0</version>
  288. </dependency>
  289. </dependencies>
  290. <!-- <repositories>-->
  291. <!-- <repository>-->
  292. <!-- <snapshots>-->
  293. <!-- <enabled>true</enabled>-->
  294. <!-- </snapshots>-->
  295. <!-- <id>${server.release}</id>-->
  296. <!-- <name>Public Repositories</name>-->
  297. <!-- <url>${repository.url}</url>-->
  298. <!-- </repository>-->
  299. <!-- </repositories>-->
  300. <pluginRepositories>
  301. <pluginRepository>
  302. <id>${server.release}</id>
  303. <name>Public Repositories</name>
  304. <url>${repository.url}</url>
  305. </pluginRepository>
  306. </pluginRepositories>
  307. <build>
  308. <!-- <plugins>
  309. <plugin>
  310. <groupId>org.springframework.boot</groupId>
  311. <artifactId>spring-boot-maven-plugin</artifactId>
  312. </plugin>
  313. </plugins>-->
  314. </build>
  315. </project>