pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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. <parent>
  6. <artifactId>hsweb-system-workflow</artifactId>
  7. <groupId>org.hswebframework.web</groupId>
  8. <version>3.0.0-RC-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>hsweb-system-workflow-local</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.hswebframework.web</groupId>
  16. <artifactId>hsweb-commons-service-simple</artifactId>
  17. <version>${project.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.flowable</groupId>
  21. <artifactId>flowable-diagram-rest</artifactId>
  22. <version>${flowable.version}</version>
  23. <exclusions>
  24. <exclusion>
  25. <groupId>org.flowable</groupId>
  26. <artifactId>flowable-common-rest</artifactId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.flowable</groupId>
  32. <artifactId>flowable-spring-boot-starter-basic</artifactId>
  33. <version>${flowable.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.flowable</groupId>
  37. <artifactId>flowable-json-converter</artifactId>
  38. <version>${flowable.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.xmlgraphics</groupId>
  42. <artifactId>batik-parser</artifactId>
  43. <version>${batik.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.xmlgraphics</groupId>
  47. <artifactId>batik-transcoder</artifactId>
  48. <version>${batik.version}</version>
  49. <exclusions>
  50. <exclusion>
  51. <artifactId>commons-logging</artifactId>
  52. <groupId>commons-logging</groupId>
  53. </exclusion>
  54. </exclusions>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.xmlgraphics</groupId>
  58. <artifactId>batik-bridge</artifactId>
  59. <version>${batik.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.xmlgraphics</groupId>
  63. <artifactId>batik-codec</artifactId>
  64. <version>${batik.version}</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.xmlgraphics</groupId>
  68. <artifactId>batik-css</artifactId>
  69. <version>${batik.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.xmlgraphics</groupId>
  73. <artifactId>batik-svg-dom</artifactId>
  74. <version>${batik.version}</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.xmlgraphics</groupId>
  78. <artifactId>batik-svggen</artifactId>
  79. <version>${batik.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.imgscalr</groupId>
  83. <artifactId>imgscalr-lib</artifactId>
  84. <version>4.2</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>math.geom2d</groupId>
  88. <artifactId>javaGeom</artifactId>
  89. <version>0.11.1</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-web</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.hswebframework.web</groupId>
  97. <artifactId>hsweb-commons-entity</artifactId>
  98. <version>${project.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.hswebframework.web</groupId>
  102. <artifactId>hsweb-commons-controller</artifactId>
  103. <version>${project.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.hswebframework.web</groupId>
  107. <artifactId>hsweb-system-authorization-api</artifactId>
  108. <version>${project.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.hswebframework.web</groupId>
  112. <artifactId>hsweb-datasource-api</artifactId>
  113. <version>${project.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.hswebframework.web</groupId>
  117. <artifactId>hsweb-system-organizational-api</artifactId>
  118. <version>${project.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.hswebframework.web</groupId>
  122. <artifactId>hsweb-system-organizational-authorization</artifactId>
  123. <version>${project.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.hswebframework.web</groupId>
  127. <artifactId>hsweb-system-dynamic-form-api</artifactId>
  128. <version>${project.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.hswebframework.web</groupId>
  132. <artifactId>hsweb-system-dynamic-form-starter</artifactId>
  133. <version>${project.version}</version>
  134. <scope>test</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>io.vavr</groupId>
  138. <artifactId>vavr</artifactId>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.hswebframework.web</groupId>
  142. <artifactId>hsweb-system-authorization-starter</artifactId>
  143. <version>${project.version}</version>
  144. <scope>test</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.hswebframework.web</groupId>
  148. <artifactId>hsweb-system-organizational-starter</artifactId>
  149. <version>${project.version}</version>
  150. <scope>test</scope>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.hswebframework.web</groupId>
  154. <artifactId>hsweb-tests</artifactId>
  155. <version>${project.version}</version>
  156. <scope>test</scope>
  157. </dependency>
  158. <dependency>
  159. <groupId>com.h2database</groupId>
  160. <artifactId>h2</artifactId>
  161. <scope>test</scope>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.alibaba</groupId>
  165. <artifactId>druid</artifactId>
  166. <version>1.0.26</version>
  167. <scope>test</scope>
  168. </dependency>
  169. </dependencies>
  170. </project>