pom.xml 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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. <groupId>com.qmth.distributed.print.business</groupId>
  6. <artifactId>distributed-print-business</artifactId>
  7. <version>3.3.1.1</version>
  8. <build>
  9. <plugins>
  10. <plugin>
  11. <groupId>org.apache.maven.plugins</groupId>
  12. <artifactId>maven-compiler-plugin</artifactId>
  13. <configuration>
  14. <source>8</source>
  15. <target>8</target>
  16. </configuration>
  17. </plugin>
  18. </plugins>
  19. </build>
  20. <packaging>jar</packaging>
  21. <parent>
  22. <groupId>com.qmth.distributed.print.service</groupId>
  23. <artifactId>distributed-print-service</artifactId>
  24. <version>3.3.1.1</version>
  25. </parent>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.apache.velocity</groupId>
  29. <artifactId>velocity-engine-core</artifactId>
  30. <version>2.0</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.qmth.teachcloud.common</groupId>
  34. <artifactId>teachcloud-common</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.qmth.teachcloud.mark</groupId>
  38. <artifactId>teachcloud-mark</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.jetbrains</groupId>
  42. <artifactId>annotations</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.itextpdf</groupId>
  46. <artifactId>itextpdf</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.itextpdf</groupId>
  50. <artifactId>itext-asian</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.google.zxing</groupId>
  54. <artifactId>core</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.google.zxing</groupId>
  58. <artifactId>javase</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.freemarker</groupId>
  62. <artifactId>freemarker</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.activiti</groupId>
  66. <artifactId>activiti-engine</artifactId>
  67. <exclusions>
  68. <exclusion>
  69. <artifactId>spring-beans</artifactId>
  70. <groupId>org.springframework</groupId>
  71. </exclusion>
  72. <exclusion>
  73. <artifactId>mybatis</artifactId>
  74. <groupId>org.mybatis</groupId>
  75. </exclusion>
  76. </exclusions>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.activiti</groupId>
  80. <artifactId>activiti-spring</artifactId>
  81. <exclusions>
  82. <exclusion>
  83. <groupId>org.codehaus.jackson</groupId>
  84. <artifactId>jackson-core-asl</artifactId>
  85. </exclusion>
  86. <exclusion>
  87. <groupId>org.slf4j</groupId>
  88. <artifactId>slf4j-log4j12</artifactId>
  89. </exclusion>
  90. <exclusion>
  91. <artifactId>spring-context</artifactId>
  92. <groupId>org.springframework</groupId>
  93. </exclusion>
  94. <exclusion>
  95. <artifactId>spring-jdbc</artifactId>
  96. <groupId>org.springframework</groupId>
  97. </exclusion>
  98. <exclusion>
  99. <artifactId>spring-tx</artifactId>
  100. <groupId>org.springframework</groupId>
  101. </exclusion>
  102. <exclusion>
  103. <artifactId>spring-orm</artifactId>
  104. <groupId>org.springframework</groupId>
  105. </exclusion>
  106. <exclusion>
  107. <artifactId>spring-beans</artifactId>
  108. <groupId>org.springframework</groupId>
  109. </exclusion>
  110. <exclusion>
  111. <artifactId>mybatis</artifactId>
  112. <groupId>org.mybatis</groupId>
  113. </exclusion>
  114. <exclusion>
  115. <artifactId>activation</artifactId>
  116. <groupId>javax.activation</groupId>
  117. </exclusion>
  118. </exclusions>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.activiti</groupId>
  122. <artifactId>activiti-spring-boot-starter-basic</artifactId>
  123. <exclusions>
  124. <exclusion>
  125. <artifactId>spring-beans</artifactId>
  126. <groupId>org.springframework</groupId>
  127. </exclusion>
  128. <exclusion>
  129. <artifactId>spring-boot-starter</artifactId>
  130. <groupId>org.springframework.boot</groupId>
  131. </exclusion>
  132. <exclusion>
  133. <artifactId>spring-boot-starter-jdbc</artifactId>
  134. <groupId>org.springframework.boot</groupId>
  135. </exclusion>
  136. </exclusions>
  137. </dependency>
  138. <!-- Activiti 流程图 -->
  139. <dependency>
  140. <groupId>org.activiti</groupId>
  141. <artifactId>activiti-common-rest</artifactId>
  142. </dependency>
  143. <!-- Activiti 在线设计 -->
  144. <dependency>
  145. <groupId>org.activiti</groupId>
  146. <artifactId>activiti-modeler</artifactId>
  147. <exclusions>
  148. <exclusion>
  149. <artifactId>spring-beans</artifactId>
  150. <groupId>org.springframework</groupId>
  151. </exclusion>
  152. <exclusion>
  153. <artifactId>spring-context</artifactId>
  154. <groupId>org.springframework</groupId>
  155. </exclusion>
  156. <exclusion>
  157. <artifactId>spring-core</artifactId>
  158. <groupId>org.springframework</groupId>
  159. </exclusion>
  160. <exclusion>
  161. <artifactId>spring-tx</artifactId>
  162. <groupId>org.springframework</groupId>
  163. </exclusion>
  164. <exclusion>
  165. <artifactId>spring-web</artifactId>
  166. <groupId>org.springframework</groupId>
  167. </exclusion>
  168. <exclusion>
  169. <artifactId>spring-security-config</artifactId>
  170. <groupId>org.springframework.security</groupId>
  171. </exclusion>
  172. <exclusion>
  173. <artifactId>spring-security-core</artifactId>
  174. <groupId>org.springframework.security</groupId>
  175. </exclusion>
  176. <exclusion>
  177. <artifactId>spring-security-crypto</artifactId>
  178. <groupId>org.springframework.security</groupId>
  179. </exclusion>
  180. <exclusion>
  181. <artifactId>spring-security-web</artifactId>
  182. <groupId>org.springframework.security</groupId>
  183. </exclusion>
  184. <exclusion>
  185. <artifactId>spring-webmvc</artifactId>
  186. <groupId>org.springframework</groupId>
  187. </exclusion>
  188. <exclusion>
  189. <artifactId>activation</artifactId>
  190. <groupId>javax.activation</groupId>
  191. </exclusion>
  192. <exclusion>
  193. <artifactId>commons-io</artifactId>
  194. <groupId>commons-io</groupId>
  195. </exclusion>
  196. </exclusions>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.springframework</groupId>
  200. <artifactId>spring-test</artifactId>
  201. <version>5.2.12.RELEASE</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.activiti</groupId>
  205. <artifactId>activiti-bpmn-layout</artifactId>
  206. </dependency>
  207. </dependencies>
  208. </project>