pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-system-workflow-flowable</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.flowable</groupId>
  15. <artifactId>flowable-spring-boot-starter-basic</artifactId>
  16. <version>${flowable.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.flowable</groupId>
  20. <artifactId>flowable-json-converter</artifactId>
  21. <version>${flowable.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.apache.xmlgraphics</groupId>
  25. <artifactId>batik-parser</artifactId>
  26. <version>${batik.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.xmlgraphics</groupId>
  30. <artifactId>batik-transcoder</artifactId>
  31. <version>${batik.version}</version>
  32. <exclusions>
  33. <exclusion>
  34. <artifactId>commons-logging</artifactId>
  35. <groupId>commons-logging</groupId>
  36. </exclusion>
  37. </exclusions>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.xmlgraphics</groupId>
  41. <artifactId>batik-bridge</artifactId>
  42. <version>${batik.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.xmlgraphics</groupId>
  46. <artifactId>batik-codec</artifactId>
  47. <version>${batik.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.xmlgraphics</groupId>
  51. <artifactId>batik-css</artifactId>
  52. <version>${batik.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.xmlgraphics</groupId>
  56. <artifactId>batik-svg-dom</artifactId>
  57. <version>${batik.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.xmlgraphics</groupId>
  61. <artifactId>batik-svggen</artifactId>
  62. <version>${batik.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.imgscalr</groupId>
  66. <artifactId>imgscalr-lib</artifactId>
  67. <version>4.2</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>math.geom2d</groupId>
  71. <artifactId>javaGeom</artifactId>
  72. <version>0.11.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-web</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.hswebframework.web</groupId>
  80. <artifactId>hsweb-commons-entity</artifactId>
  81. <version>${project.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.hswebframework.web</groupId>
  85. <artifactId>hsweb-commons-controller</artifactId>
  86. <version>${project.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.hswebframework.web</groupId>
  90. <artifactId>hsweb-system-authorization-service-api</artifactId>
  91. <version>${project.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.h2database</groupId>
  95. <artifactId>h2</artifactId>
  96. <scope>test</scope>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.alibaba</groupId>
  100. <artifactId>druid</artifactId>
  101. <version>1.0.26</version>
  102. <scope>test</scope>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-test</artifactId>
  107. <scope>test</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework</groupId>
  111. <artifactId>spring-test</artifactId>
  112. <version>4.3.7.RELEASE</version>
  113. <scope>test</scope>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.hswebframework.web</groupId>
  117. <artifactId>hsweb-spring-boot-starter</artifactId>
  118. <version>${project.version}</version>
  119. <scope>test</scope>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.hswebframework.web</groupId>
  123. <artifactId>hsweb-system-authorization-starter</artifactId>
  124. <version>${project.version}</version>
  125. <scope>test</scope>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.hswebframework.web</groupId>
  129. <artifactId>hsweb-tests</artifactId>
  130. <version>3.0-SNAPSHOT</version>
  131. </dependency>
  132. </dependencies>
  133. </project>