pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>common</artifactId>
  7. <groupId>com.ankaibei.workFlow</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common-flow</artifactId>
  12. <version>1.0.0</version>
  13. <name>common-flow</name>
  14. <packaging>jar</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.ankaibei.workFlow</groupId>
  18. <artifactId>common-datafilter</artifactId>
  19. <version>1.0.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.ankaibei.workFlow</groupId>
  23. <artifactId>common-sequence</artifactId>
  24. <version>1.0.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.ankaibei.workFlow</groupId>
  28. <artifactId>common-log</artifactId>
  29. <version>1.0.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.ankaibei.workFlow</groupId>
  33. <artifactId>common-swagger</artifactId>
  34. <version>1.0.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.flowable</groupId>
  38. <artifactId>flowable-spring-boot-starter-basic</artifactId>
  39. <version>${flowable.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.ankaibei.workFlow</groupId>
  43. <artifactId>common-online</artifactId>
  44. <version>1.0.0</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.jdom</groupId>
  49. <artifactId>jdom</artifactId>
  50. <version>1.1.3</version>
  51. </dependency>
  52. </dependencies>
  53. <build>
  54. <resources>
  55. <resource>
  56. <directory>src/main/resources</directory>
  57. <includes>
  58. <include>**/*.*</include>
  59. </includes>
  60. <filtering>false</filtering>
  61. </resource>
  62. <resource>
  63. <directory>src/main/java</directory>
  64. <includes>
  65. <include>**/*.xml</include>
  66. </includes>
  67. <filtering>false</filtering>
  68. </resource>
  69. </resources>
  70. </build>
  71. </project>