pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. <parent>
  5. <groupId>com.ankaibei.workFlow</groupId>
  6. <artifactId>AnKaiBeiWorkFlow</artifactId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>application-webadmin</artifactId>
  11. <version>1.0.0</version>
  12. <name>application</name>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.anji-plus</groupId>
  17. <artifactId>spring-boot-starter-captcha</artifactId>
  18. <version>${ajcaptcha.version}</version>
  19. </dependency>
  20. <!-- aj-captcha 依赖data-redis作为缓存 -->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-data-redis</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <artifactId>spring-boot-starter-logging</artifactId>
  27. <groupId>org.springframework.boot</groupId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <!-- 业务组件依赖 -->
  32. <dependency>
  33. <groupId>com.ankaibei.workFlow</groupId>
  34. <artifactId>common-redis</artifactId>
  35. <version>1.0.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.ankaibei.workFlow</groupId>
  39. <artifactId>common-online-api</artifactId>
  40. <version>1.0.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.ankaibei.workFlow</groupId>
  44. <artifactId>common-flow-online</artifactId>
  45. <version>1.0.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.ankaibei.workFlow</groupId>
  49. <artifactId>common-log</artifactId>
  50. <version>1.0.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.ankaibei.workFlow</groupId>
  54. <artifactId>common-minio</artifactId>
  55. <version>1.0.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.ankaibei.workFlow</groupId>
  59. <artifactId>common-sequence</artifactId>
  60. <version>1.0.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.ankaibei.workFlow</groupId>
  64. <artifactId>common-datafilter</artifactId>
  65. <version>1.0.0</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.ankaibei.workFlow</groupId>
  69. <artifactId>common-swagger</artifactId>
  70. <version>1.0.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.ankaibei.workFlow</groupId>
  74. <artifactId>common-dict</artifactId>
  75. <version>1.0.0</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-data-jpa</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.flowable</groupId>
  83. <artifactId>flowable-engine-common</artifactId>
  84. <version>6.6.0</version>
  85. </dependency>
  86. </dependencies>
  87. <build>
  88. <resources>
  89. <resource>
  90. <directory>src/main/resources</directory>
  91. <includes>
  92. <include>**/*.*</include>
  93. </includes>
  94. <filtering>false</filtering>
  95. </resource>
  96. <resource>
  97. <directory>src/main/java</directory>
  98. <includes>
  99. <include>**/*.xml</include>
  100. </includes>
  101. <filtering>false</filtering>
  102. </resource>
  103. </resources>
  104. <plugins>
  105. <plugin>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-maven-plugin</artifactId>
  108. <version>${spring-boot.version}</version>
  109. <executions>
  110. <execution>
  111. <goals>
  112. <goal>repackage</goal>
  113. </goals>
  114. </execution>
  115. </executions>
  116. </plugin>
  117. </plugins>
  118. </build>
  119. </project>