pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. </dependencies>
  81. </project>