pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.6.6</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.huimv</groupId>
  13. <artifactId>beeboxs</artifactId>
  14. <version>1.0-SNAPSHOT</version>
  15. <name>beeboxs</name>
  16. <description>Demo project for Spring Boot</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.projectlombok</groupId>
  27. <artifactId>lombok</artifactId>
  28. <optional>true</optional>
  29. </dependency>
  30. <dependency>
  31. <groupId>mysql</groupId>
  32. <artifactId>mysql-connector-java</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.auth0</groupId>
  36. <artifactId>java-jwt</artifactId>
  37. <version>3.3.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.belerweb</groupId>
  41. <artifactId>pinyin4j</artifactId>
  42. <version>2.5.1</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>io.jsonwebtoken</groupId>
  46. <artifactId>jjwt</artifactId>
  47. <version>0.9.1</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>net.sf.json-lib</groupId>
  51. <artifactId>json-lib</artifactId>
  52. <version>2.2.3</version>
  53. <classifier>jdk15</classifier>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.alibaba</groupId>
  57. <artifactId>fastjson</artifactId>
  58. <version>1.2.28</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>cn.dustlight.captcha</groupId>
  62. <artifactId>redis-store</artifactId>
  63. <version>0.0.6</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>cn.dustlight.captcha</groupId>
  67. <artifactId>captcha-core</artifactId>
  68. <version>0.0.6</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>cn.hutool</groupId>
  72. <artifactId>hutool-all</artifactId>
  73. <version>5.7.11</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.poi</groupId>
  77. <artifactId>poi-ooxml</artifactId>
  78. <version>4.1.2</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.baomidou</groupId>
  82. <artifactId>mybatis-plus-boot-starter</artifactId>
  83. <version>3.4.2</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.baomidou</groupId>
  87. <artifactId>mybatis-plus-extension</artifactId>
  88. <version>3.4.2</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.baomidou</groupId>
  92. <artifactId>mybatis-plus-generator</artifactId>
  93. <version>3.2.0</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.huimv.bee</groupId>
  97. <artifactId>org</artifactId>
  98. <scope>system</scope>
  99. <version>0.0.1</version>
  100. <systemPath>${project.basedir}/lib/commons-httpclient-3.1.jar</systemPath>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.huimv.bee1</groupId>
  104. <artifactId>org1</artifactId>
  105. <scope>system</scope>
  106. <version>0.0.2</version>
  107. <systemPath>${project.basedir}/lib/commons-io-1.3.2.jar</systemPath>
  108. </dependency>
  109. </dependencies>
  110. <build>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-maven-plugin</artifactId>
  115. <configuration>
  116. <includeSystemScope>true</includeSystemScope>
  117. </configuration>
  118. </plugin>
  119. <!--在这里修改版本-->
  120. <plugin>
  121. <groupId>org.apache.maven.plugins</groupId>
  122. <artifactId>maven-resources-plugin</artifactId>
  123. <version>2.4.3</version>
  124. </plugin>
  125. </plugins>
  126. </build>
  127. </project>