pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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>${bladex.project.version}</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. <!-- Oracle -->
  77. <dependency>
  78. <groupId>com.oracle</groupId>
  79. <artifactId>ojdbc7</artifactId>
  80. </dependency>
  81. <!-- PostgreSql -->
  82. <dependency>
  83. <groupId>org.postgresql</groupId>
  84. <artifactId>postgresql</artifactId>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.alibaba</groupId>
  88. <artifactId>druid-spring-boot-starter</artifactId>
  89. </dependency>
  90. </dependencies>
  91. <build>
  92. <plugins>
  93. <plugin>
  94. <groupId>com.spotify</groupId>
  95. <artifactId>dockerfile-maven-plugin</artifactId>
  96. <configuration>
  97. <username>${docker.username}</username>
  98. <password>${docker.password}</password>
  99. <repository>${docker.registry.url}/${docker.namespace}/${project.artifactId}</repository>
  100. <tag>${project.version}</tag>
  101. <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
  102. <buildArgs>
  103. <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
  104. </buildArgs>
  105. <skip>false</skip>
  106. </configuration>
  107. </plugin>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-antrun-plugin</artifactId>
  111. </plugin>
  112. </plugins>
  113. </build>
  114. </project>