pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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.tourism</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.client5</groupId>
  32. <artifactId>httpclient5</artifactId>
  33. <version>${httpclient5.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>joda-time</groupId>
  37. <artifactId>joda-time</artifactId>
  38. <version>${joda-time.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.commons</groupId>
  42. <artifactId>commons-collections4</artifactId>
  43. <version>${commons-collections4.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.commons</groupId>
  47. <artifactId>commons-csv</artifactId>
  48. <version>${common-csv.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>cn.hutool</groupId>
  52. <artifactId>hutool-all</artifactId>
  53. <version>${hutool.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.jsonwebtoken</groupId>
  57. <artifactId>jjwt</artifactId>
  58. <version>${jjwt.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.alibaba</groupId>
  62. <artifactId>fastjson</artifactId>
  63. <version>${fastjson.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.github.ben-manes.caffeine</groupId>
  67. <artifactId>caffeine</artifactId>
  68. <version>${caffeine.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>cn.jimmyshi</groupId>
  72. <artifactId>bean-query</artifactId>
  73. <version>${bean.query.version}</version>
  74. </dependency>
  75. <!-- poi相关工具包 -->
  76. <dependency>
  77. <groupId>org.apache.poi</groupId>
  78. <artifactId>poi-ooxml</artifactId>
  79. <version>${poi-ooxml.version}</version>
  80. </dependency>
  81. <!-- 数据库访问层相关工具 -->
  82. <dependency>
  83. <groupId>mysql</groupId>
  84. <artifactId>mysql-connector-java</artifactId>
  85. <version>8.0.22</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.alibaba</groupId>
  89. <artifactId>druid-spring-boot-starter</artifactId>
  90. <version>${druid.version}</version>
  91. <exclusions>
  92. <exclusion>
  93. <groupId>com.sun</groupId>
  94. <artifactId>jconsole</artifactId>
  95. </exclusion>
  96. <exclusion>
  97. <groupId>com.sun</groupId>
  98. <artifactId>tools</artifactId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.baomidou</groupId>
  104. <artifactId>mybatis-plus-boot-starter</artifactId>
  105. <version>${mybatisplus.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.github.pagehelper</groupId>
  109. <artifactId>pagehelper-spring-boot-starter</artifactId>
  110. <version>${pagehelper.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.codehaus.groovy</groupId>
  114. <artifactId>groovy-all</artifactId>
  115. <version>${groovy.version}</version>
  116. <type>pom</type>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.tourism</groupId>
  120. <artifactId>common-additional</artifactId>
  121. <version>1.0.0</version>
  122. <scope>compile</scope>
  123. </dependency>
  124. </dependencies>
  125. </project>