pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.jeeplus</groupId>
  7. <artifactId>jeeplus</artifactId>
  8. <version>6.0</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11. <properties>
  12. <flowable.version>6.4.2</flowable.version>
  13. <liquibase.version>3.6.2</liquibase.version>
  14. </properties>
  15. <artifactId>jeeplus-flowable</artifactId>
  16. <packaging>jar</packaging>
  17. <name>jeeplus-flowable</name>
  18. <description>bpm project for jeeplus</description>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.jeeplus</groupId>
  22. <artifactId>jeeplus-core</artifactId>
  23. <version>${project.parent.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.jeeplus</groupId>
  27. <artifactId>jeeplus-admin</artifactId>
  28. <version>${project.parent.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>commons-fileupload</groupId>
  32. <artifactId>commons-fileupload</artifactId>
  33. <version>1.3.3</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.flowable</groupId>
  37. <artifactId>flowable-spring-boot-starter-process-rest</artifactId>
  38. <version>${flowable.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.flowable</groupId>
  42. <artifactId>flowable-json-converter</artifactId>
  43. <version>${flowable.version}</version>
  44. </dependency>
  45. <!--<dependency>
  46. <groupId>org.flowable</groupId>
  47. <artifactId>flowable-rest</artifactId>
  48. <version>${flowable.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.flowable</groupId>
  52. <artifactId>flowable-ui-modeler-rest</artifactId>
  53. <version>${flowable.version}</version>
  54. </dependency> -->
  55. <dependency>
  56. <groupId>org.liquibase</groupId>
  57. <artifactId>liquibase-core</artifactId>
  58. <version>${liquibase.version}</version>
  59. <exclusions>
  60. <exclusion>
  61. <groupId>org.slf4j</groupId>
  62. <artifactId>slf4j-api</artifactId>
  63. </exclusion>
  64. <exclusion>
  65. <groupId>ch.qos.logback</groupId>
  66. <artifactId>logback-core</artifactId>
  67. </exclusion>
  68. <exclusion>
  69. <groupId>ch.qos.logback</groupId>
  70. <artifactId>logback-classic</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <!--流程设计器-->
  75. <dependency>
  76. <groupId>org.flowable</groupId>
  77. <artifactId>flowable-ui-modeler-rest</artifactId>
  78. <version>${flowable.version}</version>
  79. <exclusions>
  80. <exclusion>
  81. <groupId>org.apache.logging.log4j</groupId>
  82. <artifactId>log4j-slf4j-impl</artifactId>
  83. </exclusion>
  84. <exclusion>
  85. <groupId>org.apache.logging.log4j</groupId>
  86. <artifactId>log4j-core</artifactId>
  87. </exclusion>
  88. <exclusion>
  89. <groupId>org.slf4j</groupId>
  90. <artifactId>jul-to-slf4j</artifactId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. </dependencies>
  95. <build>
  96. <resources>
  97. <resource>
  98. <directory>src/main/webapp</directory>
  99. </resource>
  100. <resource>
  101. <directory>src/main/java</directory>
  102. <includes>
  103. <include>**/*.xml</include>
  104. <include>**/*.ftl</include>
  105. </includes>
  106. </resource>
  107. <resource>
  108. <directory>src/main/resources</directory>
  109. <filtering>true</filtering>
  110. <excludes>
  111. <exclude>**/*.woff</exclude>
  112. <exclude>**/*.woff2</exclude>
  113. <exclude>**/*.ttf</exclude>
  114. </excludes>
  115. </resource>
  116. <resource>
  117. <directory>src/main/resources</directory>
  118. <filtering>false</filtering>
  119. <includes>
  120. <include>**/*.woff</include>
  121. <include>**/*.woff2</include>
  122. <include>**/*.ttf</include>
  123. </includes>
  124. </resource>
  125. </resources>
  126. </build>
  127. </project>