暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_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>1.5.13.RELEASE</version>
  9. <relativePath/>
  10. </parent>
  11. <groupId>workflow822</groupId>
  12. <artifactId>workflow822</artifactId>
  13. <packaging>jar</packaging>
  14. <version>0.1</version>
  15. <name>workflow</name>
  16. <description></description>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <flex.messaging.version>7.1.4</flex.messaging.version>
  22. </properties>
  23. <dependencies>
  24. <!--其他需要依赖的jar包-->
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-jdbc</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-context-support</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.aspectj</groupId>
  39. <artifactId>aspectjrt</artifactId>
  40. <version>1.8.4</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.aspectj</groupId>
  44. <artifactId>aspectjweaver</artifactId>
  45. <version>1.8.4</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>backport-util-concurrent</groupId>
  49. <artifactId>backport-util-concurrent</artifactId>
  50. <version>3.1</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>cglib</groupId>
  54. <artifactId>cglib</artifactId>
  55. <version>3.2.1</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>commons-beanutils</groupId>
  59. <artifactId>commons-beanutils</artifactId>
  60. <version>1.8.3</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>commons-codec</groupId>
  64. <artifactId>commons-codec</artifactId>
  65. <version>1.10</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>commons-collections</groupId>
  69. <artifactId>commons-collections</artifactId>
  70. <version>3.2.2</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>commons-fileupload</groupId>
  74. <artifactId>commons-fileupload</artifactId>
  75. <version>1.3</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>commons-httpclient</groupId>
  79. <artifactId>commons-httpclient</artifactId>
  80. <version>3.1</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>commons-io</groupId>
  84. <artifactId>commons-io</artifactId>
  85. <version>2.2</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.commons</groupId>
  89. <artifactId>commons-lang3</artifactId>
  90. <version>3.2.1</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>commons-logging</groupId>
  94. <artifactId>commons-logging</artifactId>
  95. <version>1.1.1</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.drools</groupId>
  99. <artifactId>drools-decisiontables</artifactId>
  100. <version>5.5.0.Final</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.drools</groupId>
  104. <artifactId>drools-jsr94</artifactId>
  105. <version>5.5.0.Final</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.alibaba</groupId>
  109. <artifactId>druid</artifactId>
  110. <version>1.1.10</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.eclipse.jdt.core.compiler</groupId>
  114. <artifactId>ecj</artifactId>
  115. <version>3.5.1</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>net.sf.ehcache</groupId>
  119. <artifactId>ehcache-jgroupsreplication</artifactId>
  120. <version>1.7</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.alibaba</groupId>
  124. <artifactId>fastjson</artifactId>
  125. <version>1.2.51</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.freemarker</groupId>
  129. <artifactId>freemarker</artifactId>
  130. <version>2.3.22</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>javax.servlet.jsp</groupId>
  134. <artifactId>javax.servlet.jsp-api</artifactId>
  135. <version>2.2.1</version>
  136. <scope>provided</scope>
  137. </dependency>
  138. <dependency>
  139. <groupId>net.sf.json-lib</groupId>
  140. <artifactId>json-lib</artifactId>
  141. <version>2.4</version>
  142. <classifier>jdk15</classifier>
  143. </dependency>
  144. <dependency>
  145. <groupId>com.github.jsqlparser</groupId>
  146. <artifactId>jsqlparser</artifactId>
  147. <version>0.9.4</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.apache.poi</groupId>
  151. <artifactId>poi</artifactId>
  152. <version>3.9</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.alibaba</groupId>
  156. <artifactId>QLExpress</artifactId>
  157. <version>3.2.0</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.yaml</groupId>
  161. <artifactId>snakeyaml</artifactId>
  162. <version>1.17</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.antlr</groupId>
  166. <artifactId>stringtemplate</artifactId>
  167. <version>3.2.1</version>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.tomcat</groupId>
  171. <artifactId>tomcat-jdbc</artifactId>
  172. <version>7.0.73</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>xom</groupId>
  176. <artifactId>xom</artifactId>
  177. <version>1.2.5</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>xom</groupId>
  181. <artifactId>xom</artifactId>
  182. <version>1.2.5</version>
  183. <classifier>sources</classifier>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.thoughtworks.xstream</groupId>
  187. <artifactId>xstream</artifactId>
  188. <version>1.4.1</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>javax.jms</groupId>
  192. <artifactId>javax.jms-api</artifactId>
  193. <version>2.0.1</version>
  194. </dependency>
  195. <!-- <dependency>-->
  196. <!-- <groupId>com.oracle</groupId>-->
  197. <!-- <artifactId>ojdbc6</artifactId>-->
  198. <!-- <version>11.2.0.1.0</version>-->
  199. <!-- </dependency>-->
  200. <dependency>
  201. <groupId>com.oracle.database.jdbc</groupId>
  202. <artifactId>ojdbc8</artifactId>
  203. <version>19.22.0.0</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>com.oracle.database.nls</groupId>
  207. <artifactId>orai18n</artifactId>
  208. <version>19.22.0.0</version>
  209. </dependency>
  210. <!--2023-3-2 8.2流程引擎jar包 start-->
  211. <dependency>
  212. <groupId>flex-messaging</groupId>
  213. <artifactId>flex-messaging-common</artifactId>
  214. <version>${flex.messaging.version}</version>
  215. <scope>system</scope>
  216. <systemPath>${basedir}/lib/horizon/flex-messaging-common-7.1.4.jar</systemPath>
  217. </dependency>
  218. <dependency>
  219. <groupId>flex-messaging</groupId>
  220. <artifactId>flex-messaging-core</artifactId>
  221. <version>${flex.messaging.version}</version>
  222. <scope>system</scope>
  223. <systemPath>${basedir}/lib/horizon/flex-messaging-core-7.1.4.jar</systemPath>
  224. </dependency>
  225. <dependency>
  226. <groupId>flex-messaging</groupId>
  227. <artifactId>flex-messaging-proxy</artifactId>
  228. <version>${flex.messaging.version}</version>
  229. <scope>system</scope>
  230. <systemPath>${basedir}/lib/horizon/flex-messaging-proxy-7.1.4.jar</systemPath>
  231. </dependency>
  232. <dependency>
  233. <groupId>flex-messaging</groupId>
  234. <artifactId>flex-messaging-remoting</artifactId>
  235. <version>${flex.messaging.version}</version>
  236. <scope>system</scope>
  237. <systemPath>${basedir}/lib/horizon/flex-messaging-remoting-7.1.4.jar</systemPath>
  238. </dependency>
  239. <dependency>
  240. <groupId>com.horizon</groupId>
  241. <artifactId>horizon-designer-flowchart</artifactId>
  242. <version>8.0</version>
  243. <scope>system</scope>
  244. <systemPath>${basedir}/lib/horizon/horizon-designer-flowchart-8.0.jar</systemPath>
  245. </dependency>
  246. <dependency>
  247. <groupId>com.horizon</groupId>
  248. <artifactId>horizon-extras</artifactId>
  249. <version>8.2</version>
  250. <scope>system</scope>
  251. <systemPath>${basedir}/lib/horizon/horizon-extras-8.2.jar</systemPath>
  252. </dependency>
  253. <dependency>
  254. <groupId>com.horizon</groupId>
  255. <artifactId>horizon-framework</artifactId>
  256. <version>8.2</version>
  257. <scope>system</scope>
  258. <systemPath>${basedir}/lib/horizon/horizon-framework-8.2.2.jar</systemPath>
  259. </dependency>
  260. <dependency>
  261. <groupId>com.horizon</groupId>
  262. <artifactId>horizon-language-zh_CN</artifactId>
  263. <version>8.2</version>
  264. <scope>system</scope>
  265. <systemPath>${basedir}/lib/horizon/horizon-language-zh_CN-8.2.2.jar</systemPath>
  266. </dependency>
  267. <dependency>
  268. <groupId>com.horizon</groupId>
  269. <artifactId>horizon-language-en</artifactId>
  270. <version>8.2</version>
  271. <scope>system</scope>
  272. <systemPath>${basedir}/lib/horizon/horizon-language-en-8.2.2.jar</systemPath>
  273. </dependency>
  274. <dependency>
  275. <groupId>com.horizon</groupId>
  276. <artifactId>horizon-language-pub</artifactId>
  277. <version>8.2</version>
  278. <scope>system</scope>
  279. <systemPath>${basedir}/lib/horizon/horizon-language-pub-8.2.2.jar</systemPath>
  280. </dependency>
  281. <dependency>
  282. <groupId>com.horizon</groupId>
  283. <artifactId>horizon-plugins</artifactId>
  284. <version>8.0</version>
  285. <scope>system</scope>
  286. <systemPath>${basedir}/lib/horizon/horizon-plugins-8.0.jar</systemPath>
  287. </dependency>
  288. <dependency>
  289. <groupId>com.horizon</groupId>
  290. <artifactId>horizon-tenant-extras</artifactId>
  291. <version>8.2</version>
  292. <scope>system</scope>
  293. <systemPath>${basedir}/lib/horizon/horizon-tenant-extras-8.2.2.jar</systemPath>
  294. </dependency>
  295. <dependency>
  296. <groupId>com.horizon</groupId>
  297. <artifactId>horizon-workflow-conf</artifactId>
  298. <version>8.2</version>
  299. <scope>system</scope>
  300. <systemPath>${basedir}/lib/horizon/horizon-workflow-conf-8.2.2.jar</systemPath>
  301. </dependency>
  302. <dependency>
  303. <groupId>com.horizon</groupId>
  304. <artifactId>horizon-workflow-core</artifactId>
  305. <version>8.2</version>
  306. <scope>system</scope>
  307. <systemPath>${basedir}/lib/horizon/horizon-workflow-core-8.2.2.jar</systemPath>
  308. </dependency>
  309. <dependency>
  310. <groupId>com.horizon</groupId>
  311. <artifactId>horizon-workflow-designer</artifactId>
  312. <version>8.1</version>
  313. <scope>system</scope>
  314. <systemPath>${basedir}/lib/horizon/horizon-workflow-designer-8.1.jar</systemPath>
  315. </dependency>
  316. <dependency>
  317. <groupId>com.horizon</groupId>
  318. <artifactId>horizon-workflow-extend</artifactId>
  319. <version>8.2</version>
  320. <scope>system</scope>
  321. <systemPath>${basedir}/lib/horizon/horizon-workflow-extend-8.2.2.jar</systemPath>
  322. </dependency>
  323. <dependency>
  324. <groupId>com.horizon</groupId>
  325. <artifactId>horizon-workflow-pub</artifactId>
  326. <version>8.2</version>
  327. <scope>system</scope>
  328. <systemPath>${basedir}/lib/horizon/horizon-workflow-pub-8.2.2.jar</systemPath>
  329. </dependency>
  330. <dependency>
  331. <groupId>com.horizon</groupId>
  332. <artifactId>horizon-workflow-xml</artifactId>
  333. <version>8.2</version>
  334. <scope>system</scope>
  335. <systemPath>${basedir}/lib/horizon/horizon-workflow-xml-8.2.2.jar</systemPath>
  336. </dependency>
  337. <!--2023-3-2 数据库驱动包 切换其他版本或者数据库类型时,修改这个驱动包-->
  338. <dependency>
  339. <groupId>mysql</groupId>
  340. <artifactId>mysql-connector-java</artifactId>
  341. <version>5.1.38</version>
  342. </dependency>
  343. <!--2023-3-2 在线仓库中没有找到,所以放到工程下 -->
  344. <dependency>
  345. <groupId>java.memcached.release</groupId>
  346. <artifactId>java_memcached-release</artifactId>
  347. <version>2.6.6</version>
  348. <scope>system</scope>
  349. <systemPath>${basedir}/lib/other/java_memcached-release-2.6.6.jar</systemPath>
  350. </dependency>
  351. <dependency>
  352. <groupId>jsr94</groupId>
  353. <artifactId>jsr94</artifactId>
  354. <version>1.1</version>
  355. <scope>system</scope>
  356. <systemPath>${basedir}/lib/other/jsr94-1.1.jar</systemPath>
  357. </dependency>
  358. </dependencies>
  359. <!-- 打包规则 -->
  360. <build>
  361. <!--2023-3-2 打包的jar包名称 -->
  362. <finalName>${project.name}-${project.version}</finalName>
  363. <plugins>
  364. <plugin>
  365. <groupId>org.springframework.boot</groupId>
  366. <artifactId>spring-boot-maven-plugin</artifactId>
  367. <configuration>
  368. <includeSystemScope>true</includeSystemScope>
  369. </configuration>
  370. </plugin>
  371. <plugin>
  372. <groupId>org.apache.maven.plugins</groupId>
  373. <artifactId>maven-compiler-plugin</artifactId>
  374. <configuration>
  375. <source>7</source>
  376. <target>7</target>
  377. </configuration>
  378. </plugin>
  379. </plugins>
  380. <resources>
  381. <resource>
  382. <directory>src/main/java</directory>
  383. <targetPath>javafile</targetPath>
  384. <includes>
  385. <include>**</include>
  386. </includes>
  387. </resource>
  388. <resource>
  389. <directory>src/main/resources</directory>
  390. <includes>
  391. <include>**</include>
  392. </includes>
  393. </resource>
  394. </resources>
  395. </build>
  396. </project>