pom.xml 4.5 KB

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