pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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>rcaudit</artifactId>
  7. <groupId>com.ruoyi</groupId>
  8. <version>3.8.8</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>rc-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- spring-boot-devtools -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-devtools</artifactId>
  21. <optional>true</optional> <!-- 表示依赖不会传递 -->
  22. </dependency>
  23. <!-- swagger3-->
  24. <dependency>
  25. <groupId>io.springfox</groupId>
  26. <artifactId>springfox-boot-starter</artifactId>
  27. </dependency>
  28. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  29. <dependency>
  30. <groupId>io.swagger</groupId>
  31. <artifactId>swagger-models</artifactId>
  32. <version>1.6.2</version>
  33. </dependency>
  34. <!-- Mysql驱动包 -->
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. <version>5.1.34</version>
  39. </dependency>
  40. <!-- 核心模块-->
  41. <dependency>
  42. <groupId>com.ruoyi</groupId>
  43. <artifactId>rc-framework</artifactId>
  44. </dependency>
  45. <!-- 定时任务-->
  46. <dependency>
  47. <groupId>com.ruoyi</groupId>
  48. <artifactId>rc-quartz</artifactId>
  49. </dependency>
  50. <!-- 代码生成-->
  51. <dependency>
  52. <groupId>com.ruoyi</groupId>
  53. <artifactId>rc-generator</artifactId>
  54. </dependency>
  55. <!-- RC业务模块 -->
  56. <dependency>
  57. <groupId>com.ruoyi</groupId>
  58. <artifactId>rc-buisness</artifactId>
  59. </dependency>
  60. <!--审批流-->
  61. <dependency>
  62. <groupId>org.activiti</groupId>
  63. <artifactId>activiti-engine</artifactId>
  64. <version>6.0.0</version>
  65. <exclusions>
  66. <exclusion>
  67. <groupId>org.mybatis</groupId>
  68. <artifactId>mybatis</artifactId>
  69. </exclusion>
  70. </exclusions>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.activiti</groupId>
  74. <artifactId>activiti-spring</artifactId>
  75. <version>6.0.0</version>
  76. </dependency>
  77. <!-- 阿里JSON解析器 -->
  78. <dependency>
  79. <groupId>com.alibaba</groupId>
  80. <artifactId>fastjson</artifactId>
  81. <version>1.2.74</version>
  82. </dependency>
  83. <!--http-->
  84. <dependency>
  85. <groupId>org.apache.httpcomponents</groupId>
  86. <artifactId>httpcore</artifactId>
  87. <version>4.4.9</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.httpcomponents</groupId>
  91. <artifactId>httpclient</artifactId>
  92. <version>4.5.13</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.httpcomponents</groupId>
  96. <artifactId>httpmime</artifactId>
  97. <version>4.5.12</version>
  98. </dependency>
  99. </dependencies>
  100. <build>
  101. <plugins>
  102. <plugin>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-maven-plugin</artifactId>
  105. <version>2.5.15</version>
  106. <configuration>
  107. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  108. </configuration>
  109. <executions>
  110. <execution>
  111. <goals>
  112. <goal>repackage</goal>
  113. </goals>
  114. </execution>
  115. </executions>
  116. </plugin>
  117. <plugin>
  118. <groupId>org.apache.maven.plugins</groupId>
  119. <artifactId>maven-war-plugin</artifactId>
  120. <version>3.1.0</version>
  121. <configuration>
  122. <failOnMissingWebXml>false</failOnMissingWebXml>
  123. <warName>${project.artifactId}</warName>
  124. </configuration>
  125. </plugin>
  126. </plugins>
  127. <finalName>${project.artifactId}</finalName>
  128. </build>
  129. </project>