pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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-dict</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.ankaibei.workFlow</groupId>
  15. <artifactId>common-redis</artifactId>
  16. <version>1.0.0</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.ankaibei.workFlow</groupId>
  20. <artifactId>common-sequence</artifactId>
  21. <version>1.0.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.ankaibei.workFlow</groupId>
  25. <artifactId>common-swagger</artifactId>
  26. <version>1.0.0</version>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <resources>
  31. <resource>
  32. <directory>src/main/resources</directory>
  33. <includes>
  34. <include>**/*.*</include>
  35. </includes>
  36. <filtering>false</filtering>
  37. </resource>
  38. <resource>
  39. <directory>src/main/java</directory>
  40. <includes>
  41. <include>**/*.xml</include>
  42. </includes>
  43. <filtering>false</filtering>
  44. </resource>
  45. </resources>
  46. </build>
  47. </project>