pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.lc.ibps.provider</groupId>
  6. <artifactId>ibps-provider-root</artifactId>
  7. <version>3.3.7-LC.RELEASE</version>
  8. <relativePath>../../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ibps-provider-bpmn</artifactId>
  12. <properties>
  13. <java.version>1.8</java.version>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. <jboss-logging.version>3.3.0.Final</jboss-logging.version>
  17. <maven.build.timestamp.format>yyyyMMdd-HHmmss</maven.build.timestamp.format>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.jboss.logging</groupId>
  22. <artifactId>jboss-logging</artifactId>
  23. <version>${jboss-logging.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-log4j2</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.lc.ibps.cloud</groupId>
  31. <artifactId>ibps-basic-provider</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.lc.ibps.cloud</groupId>
  35. <artifactId>ibps-basic-monitor</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.lc.ibps.cloud</groupId>
  39. <artifactId>ibps-basic-validator</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.lc.ibps.cloud</groupId>
  43. <artifactId>ibps-basic-swagger</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.lc.ibps.provider.base</groupId>
  47. <artifactId>ibps-provider-bpmn-api</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.lc.ibps.base</groupId>
  51. <artifactId>ibps-base-db</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.lc.ibps.base</groupId>
  55. <artifactId>ibps-base-service</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.lc.ibps.bpmn</groupId>
  59. <artifactId>ibps-bpmn-biz</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>fastjson</artifactId>
  64. <version>1.2.47</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.lc.ibps.message</groupId>
  68. <artifactId>ibps-message-producer</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.lc.ibps.cloud</groupId>
  72. <artifactId>ibps-oauth-client2</artifactId>
  73. </dependency>
  74. <!-- 京东多线程开发工具 -->
  75. <!-- 解决任意的多线程并行、串行、阻塞、依赖、回调的并行框架,可以任意组合各线程的执行顺序,带全链路执行结果回调。 -->
  76. <dependency>
  77. <groupId>com.jd.platform</groupId>
  78. <artifactId>asyncTool</artifactId>
  79. </dependency>
  80. <!-- https://mvnrepository.com/artifact/net.sf.ezmorph/ezmorph -->
  81. <dependency>
  82. <groupId>net.sf.ezmorph</groupId>
  83. <artifactId>ezmorph</artifactId>
  84. </dependency>
  85. <!-- https://mvnrepository.com/artifact/net.sf.morph/morph -->
  86. <dependency>
  87. <groupId>net.sf.morph</groupId>
  88. <artifactId>morph</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.alibaba</groupId>
  92. <artifactId>druid</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>mysql</groupId>
  96. <artifactId>mysql-connector-java</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.microsoft.sqlserver</groupId>
  100. <artifactId>mssql-jdbc</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.oracle</groupId>
  104. <artifactId>oracledriver</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>fakepath</groupId>
  108. <artifactId>postgresql</artifactId>
  109. </dependency>
  110. <dependency>
  111. <groupId>javax.servlet</groupId>
  112. <artifactId>javax.servlet-api</artifactId>
  113. </dependency>
  114. <dependency>
  115. <groupId>javax</groupId>
  116. <artifactId>javaee-api</artifactId>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-starter-test</artifactId>
  121. <scope>test</scope>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.lc.ibps.form</groupId>
  125. <artifactId>ibps-form-biz</artifactId>
  126. </dependency>
  127. </dependencies>
  128. <build>
  129. <plugins>
  130. <plugin>
  131. <artifactId>maven-clean-plugin</artifactId>
  132. <version>3.0.0</version>
  133. <configuration>
  134. <source>1.8</source>
  135. <target>1.8</target>
  136. <encoding>UTF-8</encoding>
  137. </configuration>
  138. </plugin>
  139. <plugin>
  140. <artifactId>maven-compiler-plugin</artifactId>
  141. <version>3.0</version>
  142. <configuration>
  143. <source>1.8</source>
  144. <target>1.8</target>
  145. <fork>true</fork>
  146. <encoding>UTF-8</encoding>
  147. </configuration>
  148. </plugin>
  149. </plugins>
  150. </build>
  151. </project>