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. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.4.5</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.huimv</groupId>
  13. <artifactId>get-data</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <dependencies>
  16. <!-- <dependency>-->
  17. <!-- <groupId>org.springframework.boot</groupId>-->
  18. <!-- <artifactId>spring-boot-starter-data-jpa</artifactId>-->
  19. <!-- <version>2.3.1.RELEASE</version>-->
  20. <!-- </dependency>-->
  21. <dependency>
  22. <groupId>org.projectlombok</groupId>
  23. <artifactId>lombok</artifactId>
  24. </dependency>
  25. <!-- <dependency>-->
  26. <!-- <groupId>com.microsoft.sqlserver</groupId>-->
  27. <!-- <artifactId>mssql-jdbc</artifactId>-->
  28. <!-- <version>9.4.0.jre8</version>-->
  29. <!-- </dependency>-->
  30. <!-- <dependency>-->
  31. <!-- <groupId>com.microsoft.sqlserver</groupId>-->
  32. <!-- <artifactId>sqljdbc4</artifactId>-->
  33. <!-- <version>4.0</version>-->
  34. <!-- </dependency>-->
  35. <dependency>
  36. <groupId>com.microsoft.sqlserver</groupId>
  37. <artifactId>sqljdbc4</artifactId>
  38. <version>4.0</version>
  39. </dependency>
  40. <!-- 排除Tomcat容器 -->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-web</artifactId>
  44. <!-- 移除掉默认支持的 Tomcat -->
  45. <exclusions>
  46. <exclusion>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-tomcat</artifactId>
  49. </exclusion>
  50. </exclusions>
  51. </dependency>
  52. <!-- 添加 Undertow 容器 -->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-undertow</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.alibaba</groupId>
  59. <artifactId>fastjson</artifactId>
  60. <version>1.2.62</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>cn.hutool</groupId>
  64. <artifactId>hutool-all</artifactId>
  65. <version>5.7.2</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.commons</groupId>
  69. <artifactId>commons-lang3</artifactId>
  70. <version>3.7</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.baomidou</groupId>
  74. <artifactId>mybatis-plus-boot-starter</artifactId>
  75. <version>3.4.2</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.baomidou</groupId>
  79. <artifactId>mybatis-plus-extension</artifactId>
  80. <version>3.4.2</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.baomidou</groupId>
  84. <artifactId>mybatis-plus-generator</artifactId>
  85. <version>3.2.0</version>
  86. </dependency>
  87. </dependencies>
  88. <build>
  89. <plugins>
  90. <plugin>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-maven-plugin</artifactId>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. </project>