pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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-online</artifactId>
  12. <version>1.0.0</version>
  13. <name>common-online</name>
  14. <packaging>jar</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.ankaibei.workFlow</groupId>
  18. <artifactId>common-core</artifactId>
  19. <version>1.0.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.ankaibei.workFlow</groupId>
  23. <artifactId>common-datafilter</artifactId>
  24. <version>1.0.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.ankaibei.workFlow</groupId>
  28. <artifactId>common-redis</artifactId>
  29. <version>1.0.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.ankaibei.workFlow</groupId>
  33. <artifactId>common-sequence</artifactId>
  34. <version>1.0.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.ankaibei.workFlow</groupId>
  38. <artifactId>common-log</artifactId>
  39. <version>1.0.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.ankaibei.workFlow</groupId>
  43. <artifactId>common-minio</artifactId>
  44. <version>1.0.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.ankaibei.workFlow</groupId>
  48. <artifactId>common-swagger</artifactId>
  49. <version>1.0.0</version>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <resources>
  54. <resource>
  55. <directory>src/main/resources</directory>
  56. <includes>
  57. <include>**/*.*</include>
  58. </includes>
  59. <filtering>false</filtering>
  60. </resource>
  61. <resource>
  62. <directory>src/main/java</directory>
  63. <includes>
  64. <include>**/*.xml</include>
  65. </includes>
  66. <filtering>false</filtering>
  67. </resource>
  68. </resources>
  69. </build>
  70. </project>