pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>ruoyi</artifactId>
  6. <groupId>com.ruoyi</groupId>
  7. <version>3.8.6</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>ruoyi-flowable</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.ruoyi</groupId>
  14. <artifactId>ruoyi-framework</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>com.ruoyi</groupId>
  18. <artifactId>ruoyi-system</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.ruoyi</groupId>
  22. <artifactId>ruoyi-common</artifactId>
  23. </dependency>
  24. <!--常用工具类 -->
  25. <dependency>
  26. <groupId>org.apache.commons</groupId>
  27. <artifactId>commons-lang3</artifactId>
  28. </dependency>
  29. <!-- JSON工具类 -->
  30. <dependency>
  31. <groupId>com.fasterxml.jackson.core</groupId>
  32. <artifactId>jackson-databind</artifactId>
  33. </dependency>
  34. <!-- 阿里JSON解析器 -->
  35. <dependency>
  36. <groupId>com.alibaba.fastjson2</groupId>
  37. <artifactId>fastjson2</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <optional>true</optional>
  43. </dependency>
  44. <dependency>
  45. <groupId>io.swagger</groupId>
  46. <artifactId>swagger-annotations</artifactId>
  47. <scope>compile</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.flowable</groupId>
  51. <artifactId>flowable-spring-boot-starter</artifactId>
  52. <!-- 排除flowable自带的权限认证 -->
  53. <exclusions>
  54. <exclusion>
  55. <groupId>org.flowable</groupId>
  56. <artifactId>flowable-spring-security</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.baomidou</groupId>
  62. <artifactId>mybatis-plus-boot-starter</artifactId>
  63. </dependency>
  64. <dependency>
  65. <!-- websocket -->
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-websocket</artifactId>
  68. </dependency>
  69. <!--el表达式计算-->
  70. <dependency>
  71. <groupId>com.googlecode.aviator</groupId>
  72. <artifactId>aviator</artifactId>
  73. <version>5.3.3</version>
  74. </dependency>
  75. </dependencies>
  76. <!-- <build>-->
  77. <!-- <plugins>-->
  78. <!-- <plugin>-->
  79. <!-- <groupId>org.springframework.boot</groupId>-->
  80. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  81. <!-- </plugin>-->
  82. <!-- </plugins>-->
  83. <!-- </build>-->
  84. </project>