pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. <groupId>rock.star.idea</groupId>
  7. <artifactId>rock-star-idea</artifactId>
  8. <version>0.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>pro-flow</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <!-- Rock 工程依赖 -->
  15. <dependency>
  16. <groupId>com.rockstar.anticontrol</groupId>
  17. <artifactId>rock-frame</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.rockstar.anticontrol</groupId>
  21. <artifactId>rock-system</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.rockstar.anticontrol</groupId>
  25. <artifactId>rock-flow</artifactId>
  26. </dependency>
  27. <!-- SpringBoot集成mybatis框架 -->
  28. <dependency>
  29. <groupId>org.mybatis.spring.boot</groupId>
  30. <artifactId>mybatis-spring-boot-starter</artifactId>
  31. <version>${mybatis.version}</version>
  32. </dependency>
  33. <!-- 文件上传依赖 -->
  34. <dependency>
  35. <groupId>commons-io</groupId>
  36. <artifactId>commons-io</artifactId>
  37. <version>1.3.2</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>commons-fileupload</groupId>
  41. <artifactId>commons-fileupload</artifactId>
  42. <version>1.2.1</version>
  43. </dependency>
  44. <!--Alibaba-Excel-->
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>easyexcel</artifactId>
  48. <version>2.1.3</version>
  49. </dependency>
  50. <!-- 工具包 -->
  51. <dependency>
  52. <groupId>cn.hutool</groupId>
  53. <artifactId>hutool-all</artifactId>
  54. <version>5.7.4</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.poi</groupId>
  58. <artifactId>ooxml-schemas</artifactId>
  59. <version>1.1</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>commons-io</groupId>
  63. <artifactId>commons-io</artifactId>
  64. <version>2.10.0</version>
  65. </dependency>
  66. <!-- -->
  67. <dependency>
  68. <groupId>com.qiniu</groupId>
  69. <artifactId>qiniu-java-sdk</artifactId>
  70. <version>[7.7.0, 7.7.99]</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.google.code.gson</groupId>
  74. <artifactId>gson</artifactId>
  75. <version>2.8.5</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.postgresql</groupId>
  79. <artifactId>postgresql</artifactId>
  80. <scope>runtime</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.github.pagehelper</groupId>
  84. <artifactId>pagehelper</artifactId>
  85. <version>${pagehelper.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.github.pagehelper</groupId>
  89. <artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
  90. <version>1.2.3</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.projectlombok</groupId>
  94. <artifactId>lombok</artifactId>
  95. </dependency>
  96. </dependencies>
  97. <build>
  98. <plugins>
  99. <plugin>
  100. <groupId>org.apache.maven.plugins</groupId>
  101. <artifactId>maven-compiler-plugin</artifactId>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. </project>