pom.xml 4.6 KB

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