1
0

pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. <groupId>space.anyi</groupId>
  7. <artifactId>BI</artifactId>
  8. <version>1.0</version>
  9. <packaging>jar</packaging>
  10. <properties>
  11. <maven.compiler.source>17</maven.compiler.source>
  12. <maven.compiler.target>17</maven.compiler.target>
  13. </properties>
  14. <parent>
  15. <artifactId>spring-boot-starter-parent</artifactId>
  16. <groupId>org.springframework.boot</groupId>
  17. <version>2.7.16</version>
  18. </parent>
  19. <dependencies>
  20. <dependency>
  21. <groupId>mysql</groupId>
  22. <artifactId>mysql-connector-java</artifactId>
  23. <version>5.1.49</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.baomidou</groupId>
  27. <artifactId>mybatis-plus-boot-starter</artifactId>
  28. <version>3.4.3.4</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.afterturn</groupId>
  36. <artifactId>easypoi-spring-boot-starter</artifactId>
  37. <version>4.4.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-test</artifactId>
  42. </dependency>
  43. <!--<dependency>-->
  44. <!-- <groupId>io.springfox</groupId>-->
  45. <!-- <artifactId>springfox-swagger2</artifactId>-->
  46. <!-- <version>2.7.0</version>-->
  47. <!--</dependency>-->
  48. <!--<dependency>-->
  49. <!-- <groupId>io.springfox</groupId>-->
  50. <!-- <artifactId>springfox-swagger-ui</artifactId>-->
  51. <!-- <version>2.7.0</version>-->
  52. <!--</dependency>-->
  53. <dependency>
  54. <groupId>com.github.xiaoymin</groupId>
  55. <artifactId>knife4j-spring-boot-starter</artifactId>
  56. <version>2.0.8</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>cn.hutool</groupId>
  60. <artifactId>hutool-all</artifactId>
  61. <version>5.1.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-security</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.jsonwebtoken</groupId>
  69. <artifactId>jjwt</artifactId>
  70. <version>0.9.1</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-data-redis</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.alibaba</groupId>
  78. <artifactId>fastjson</artifactId>
  79. <version>1.2.33</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-validation</artifactId>
  84. </dependency>
  85. </dependencies>
  86. <!--<build>-->
  87. <!-- <plugins>-->
  88. <!-- <plugin>-->
  89. <!-- <groupId>org.springframework.boot</groupId>-->
  90. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  91. <!-- <configuration>-->
  92. <!-- </configuration>-->
  93. <!-- </plugin>-->
  94. <!-- </plugins>-->
  95. <!--</build>-->
  96. </project>