pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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>blade-ops</artifactId>
  7. <groupId>org.springblade</groupId>
  8. <version>2.8.2.RELEASE</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>blade-flow-design</artifactId>
  12. <name>${project.artifactId}</name>
  13. <version>2.8.2.RELEASE</version>
  14. <packaging>jar</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springblade</groupId>
  18. <artifactId>blade-core-launch</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-configuration-processor</artifactId>
  27. <optional>true</optional>
  28. </dependency>
  29. <dependency>
  30. <groupId>net.sourceforge.nekohtml</groupId>
  31. <artifactId>nekohtml</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.liquibase</groupId>
  35. <artifactId>liquibase-core</artifactId>
  36. <exclusions>
  37. <exclusion>
  38. <groupId>ch.qos.logback</groupId>
  39. <artifactId>logback-core</artifactId>
  40. </exclusion>
  41. <exclusion>
  42. <groupId>ch.qos.logback</groupId>
  43. <artifactId>logback-classic</artifactId>
  44. </exclusion>
  45. </exclusions>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.flowable</groupId>
  49. <artifactId>flowable-spring-boot-starter</artifactId>
  50. <version>${flowable.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.flowable</groupId>
  54. <artifactId>flowable-ui-modeler-rest</artifactId>
  55. <version>${flowable.version}</version>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>org.apache.logging.log4j</groupId>
  59. <artifactId>log4j-slf4j-impl</artifactId>
  60. </exclusion>
  61. <exclusion>
  62. <groupId>org.apache.logging.log4j</groupId>
  63. <artifactId>log4j-core</artifactId>
  64. </exclusion>
  65. <exclusion>
  66. <groupId>org.slf4j</groupId>
  67. <artifactId>jul-to-slf4j</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. <!-- MySql -->
  72. <dependency>
  73. <groupId>mysql</groupId>
  74. <artifactId>mysql-connector-java</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.alibaba</groupId>
  78. <artifactId>druid-spring-boot-starter</artifactId>
  79. </dependency>
  80. </dependencies>
  81. <build>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-antrun-plugin</artifactId>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>