pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. <groupId>com.xazhcx.aqpt</groupId>
  6. <artifactId>aqpt-flowable</artifactId>
  7. <name>aqpt-flowable</name>
  8. <parent>
  9. <artifactId>aqpt-parent</artifactId>
  10. <groupId>com.xazhcx.aqpt</groupId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. </parent>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  16. <java.version>1.8</java.version>
  17. <maven.compiler.source>1.8</maven.compiler.source>
  18. <maven.compiler.target>1.8</maven.compiler.target>
  19. <skipTests>true</skipTests>
  20. <flowable.version>6.4.2</flowable.version>
  21. </properties>
  22. <dependencies>
  23. <!--flowable工作流-->
  24. <dependency>
  25. <groupId>org.flowable</groupId>
  26. <artifactId>flowable-spring-boot-starter</artifactId>
  27. <version>${flowable.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.flowable</groupId>
  31. <artifactId>flowable-spring-boot-starter-rest</artifactId>
  32. <version>${flowable.version}</version>
  33. </dependency>
  34. <!-- flowable6.4以上添加这个依赖-->
  35. <dependency>
  36. <groupId>xerces</groupId>
  37. <artifactId>xercesImpl</artifactId>
  38. <version>2.12.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.xazhcx.aqpt</groupId>
  42. <artifactId>aqpt-core</artifactId>
  43. <version>0.0.1-SNAPSHOT</version>
  44. <scope>compile</scope>
  45. </dependency>
  46. </dependencies>
  47. </project>