pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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>common</artifactId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>common-core</artifactId>
  11. <version>1.0.0</version>
  12. <name>common-core</name>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <!-- 常用工具 -->
  16. <dependency>
  17. <groupId>com.google.guava</groupId>
  18. <artifactId>guava</artifactId>
  19. <version>${guava.version}</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.apache.commons</groupId>
  23. <artifactId>commons-lang3</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>commons-io</groupId>
  27. <artifactId>commons-io</artifactId>
  28. <version>${commons-io.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.httpcomponents</groupId>
  32. <artifactId>httpclient</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>joda-time</groupId>
  36. <artifactId>joda-time</artifactId>
  37. <version>${joda-time.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.commons</groupId>
  41. <artifactId>commons-collections4</artifactId>
  42. <version>${commons-collections4.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.commons</groupId>
  46. <artifactId>commons-csv</artifactId>
  47. <version>${common-csv.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>cn.hutool</groupId>
  51. <artifactId>hutool-all</artifactId>
  52. <version>${hutool.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>io.jsonwebtoken</groupId>
  56. <artifactId>jjwt</artifactId>
  57. <version>${jjwt.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>fastjson</artifactId>
  62. <version>${fastjson.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.github.ben-manes.caffeine</groupId>
  66. <artifactId>caffeine</artifactId>
  67. <version>${caffeine.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>cn.jimmyshi</groupId>
  71. <artifactId>bean-query</artifactId>
  72. <version>${bean.query.version}</version>
  73. </dependency>
  74. <!-- poi相关工具包 -->
  75. <dependency>
  76. <groupId>org.apache.poi</groupId>
  77. <artifactId>poi-ooxml</artifactId>
  78. <version>${poi-ooxml.version}</version>
  79. </dependency>
  80. <!-- 数据库访问层相关工具 -->
  81. <dependency>
  82. <groupId>mysql</groupId>
  83. <artifactId>mysql-connector-java</artifactId>
  84. <scope>runtime</scope>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.alibaba</groupId>
  88. <artifactId>druid-spring-boot-starter</artifactId>
  89. <version>${druid.version}</version>
  90. <exclusions>
  91. <exclusion>
  92. <groupId>com.sun</groupId>
  93. <artifactId>jconsole</artifactId>
  94. </exclusion>
  95. <exclusion>
  96. <groupId>com.sun</groupId>
  97. <artifactId>tools</artifactId>
  98. </exclusion>
  99. </exclusions>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.baomidou</groupId>
  103. <artifactId>mybatis-plus-boot-starter</artifactId>
  104. <version>${mybatisplus.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.github.pagehelper</groupId>
  108. <artifactId>pagehelper-spring-boot-starter</artifactId>
  109. <version>${pagehelper.version}</version>
  110. </dependency>
  111. </dependencies>
  112. </project>