pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.6.6</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.huimv</groupId>
  12. <artifactId>beeboxs</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>beeboxs</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.projectlombok</groupId>
  26. <artifactId>lombok</artifactId>
  27. <optional>true</optional>
  28. </dependency>
  29. <dependency>
  30. <groupId>mysql</groupId>
  31. <artifactId>mysql-connector-java</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.auth0</groupId>
  35. <artifactId>java-jwt</artifactId>
  36. <version>3.3.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.belerweb</groupId>
  40. <artifactId>pinyin4j</artifactId>
  41. <version>2.5.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>io.jsonwebtoken</groupId>
  45. <artifactId>jjwt</artifactId>
  46. <version>0.9.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.sf.json-lib</groupId>
  50. <artifactId>json-lib</artifactId>
  51. <version>2.2.3</version>
  52. <classifier>jdk15</classifier>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>fastjson</artifactId>
  57. <version>1.2.28</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>cn.dustlight.captcha</groupId>
  61. <artifactId>redis-store</artifactId>
  62. <version>0.0.6</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>cn.dustlight.captcha</groupId>
  66. <artifactId>captcha-core</artifactId>
  67. <version>0.0.6</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>cn.hutool</groupId>
  71. <artifactId>hutool-all</artifactId>
  72. <version>5.7.11</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.baomidou</groupId>
  76. <artifactId>mybatis-plus-boot-starter</artifactId>
  77. <version>3.4.2</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.baomidou</groupId>
  81. <artifactId>mybatis-plus-extension</artifactId>
  82. <version>3.4.2</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.baomidou</groupId>
  86. <artifactId>mybatis-plus-generator</artifactId>
  87. <version>3.2.0</version>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-maven-plugin</artifactId>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. </project>