pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.1.12.RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <groupId>org.springblade</groupId>
  13. <artifactId>Flowable-Design</artifactId>
  14. <version>2.4.0.RELEASE</version>
  15. <name>Flowable-Design</name>
  16. <description>flowable engine</description>
  17. <properties>
  18. <bladex.tool.version>2.4.0.RELEASE</bladex.tool.version>
  19. <java.version>1.8</java.version>
  20. <flowable.version>6.4.2</flowable.version>
  21. <mysql.connector.version>8.0.17</mysql.connector.version>
  22. <oracle.connector.version>12.2.0.1</oracle.connector.version>
  23. <postgresql.connector.version>42.2.6</postgresql.connector.version>
  24. <spring.boot.version>2.1.12.RELEASE</spring.boot.version>
  25. <java.version>1.8</java.version>
  26. <jackson.version>2.11.0</jackson.version>
  27. <maven.plugin.version>3.8.1</maven.plugin.version>
  28. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  29. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  30. </properties>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.springblade</groupId>
  34. <artifactId>blade-core-launch</artifactId>
  35. <version>${bladex.tool.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-configuration-processor</artifactId>
  44. <optional>true</optional>
  45. </dependency>
  46. <dependency>
  47. <groupId>net.sourceforge.nekohtml</groupId>
  48. <artifactId>nekohtml</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.liquibase</groupId>
  52. <artifactId>liquibase-core</artifactId>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>ch.qos.logback</groupId>
  56. <artifactId>logback-core</artifactId>
  57. </exclusion>
  58. <exclusion>
  59. <groupId>ch.qos.logback</groupId>
  60. <artifactId>logback-classic</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.flowable</groupId>
  66. <artifactId>flowable-spring-boot-starter</artifactId>
  67. <version>${flowable.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.flowable</groupId>
  71. <artifactId>flowable-ui-modeler-rest</artifactId>
  72. <version>${flowable.version}</version>
  73. <exclusions>
  74. <exclusion>
  75. <groupId>org.apache.logging.log4j</groupId>
  76. <artifactId>log4j-slf4j-impl</artifactId>
  77. </exclusion>
  78. <exclusion>
  79. <groupId>org.apache.logging.log4j</groupId>
  80. <artifactId>log4j-core</artifactId>
  81. </exclusion>
  82. <exclusion>
  83. <groupId>org.slf4j</groupId>
  84. <artifactId>jul-to-slf4j</artifactId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <!-- MySql -->
  89. <dependency>
  90. <groupId>mysql</groupId>
  91. <artifactId>mysql-connector-java</artifactId>
  92. <version>${mysql.connector.version}</version>
  93. </dependency>
  94. <!-- Oracle -->
  95. <dependency>
  96. <groupId>com.oracle</groupId>
  97. <artifactId>ojdbc7</artifactId>
  98. <version>${oracle.connector.version}</version>
  99. </dependency>
  100. <!-- PostgreSql -->
  101. <dependency>
  102. <groupId>org.postgresql</groupId>
  103. <artifactId>postgresql</artifactId>
  104. <version>${postgresql.connector.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.alibaba</groupId>
  108. <artifactId>druid-spring-boot-starter</artifactId>
  109. <version>1.1.21</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.projectlombok</groupId>
  113. <artifactId>lombok</artifactId>
  114. <scope>provided</scope>
  115. </dependency>
  116. </dependencies>
  117. <build>
  118. <finalName>Flowable-Design</finalName>
  119. <plugins>
  120. <plugin>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-maven-plugin</artifactId>
  123. <version>${spring.boot.version}</version>
  124. <configuration>
  125. <finalName>${project.build.finalName}</finalName>
  126. </configuration>
  127. <executions>
  128. <execution>
  129. <goals>
  130. <goal>repackage</goal>
  131. </goals>
  132. </execution>
  133. </executions>
  134. </plugin>
  135. <plugin>
  136. <artifactId>maven-compiler-plugin</artifactId>
  137. <version>${maven.plugin.version}</version>
  138. <configuration>
  139. <source>${java.version}</source>
  140. <target>${java.version}</target>
  141. <encoding>UTF-8</encoding>
  142. <compilerArgs>
  143. <arg>-parameters</arg>
  144. </compilerArgs>
  145. </configuration>
  146. </plugin>
  147. </plugins>
  148. </build>
  149. <repositories>
  150. <repository>
  151. <id>aliyun-repos</id>
  152. <url>https://maven.aliyun.com/nexus/content/groups/public/</url>
  153. <snapshots>
  154. <enabled>false</enabled>
  155. </snapshots>
  156. </repository>
  157. <repository>
  158. <id>blade-release</id>
  159. <name>Release Repository</name>
  160. <url>http://nexus.bladex.vip/repository/maven-releases/</url>
  161. </repository>
  162. </repositories>
  163. <pluginRepositories>
  164. <pluginRepository>
  165. <id>aliyun-plugin</id>
  166. <url>https://maven.aliyun.com/nexus/content/groups/public/</url>
  167. <snapshots>
  168. <enabled>false</enabled>
  169. </snapshots>
  170. </pluginRepository>
  171. </pluginRepositories>
  172. </project>