pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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.7.8</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.ch</groupId>
  12. <artifactId>jiaoxuelou_houtai</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>jiaoxuelou_houtai</name>
  15. <description>jiaoxuelou_houtai</description>
  16. <properties>
  17. <java.version>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>io.jsonwebtoken</groupId>
  26. <artifactId>jjwt</artifactId>
  27. <version>0.9.1</version>
  28. </dependency>
  29. <!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
  30. <dependency>
  31. <groupId>javax.xml.bind</groupId>
  32. <artifactId>jaxb-api</artifactId>
  33. <version>2.3.1</version>
  34. </dependency>
  35. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-boot-starter -->
  36. <dependency>
  37. <groupId>com.baomidou</groupId>
  38. <artifactId>mybatis-plus-boot-starter</artifactId>
  39. <version>3.5.2</version>
  40. </dependency>
  41. <!-- https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
  42. <dependency>
  43. <groupId>com.alibaba.fastjson2</groupId>
  44. <artifactId>fastjson2</artifactId>
  45. <version>2.0.33</version>
  46. </dependency>
  47. <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter -->
  48. <dependency>
  49. <groupId>com.github.pagehelper</groupId>
  50. <artifactId>pagehelper-spring-boot-starter</artifactId>
  51. <version>1.4.7</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.squareup.okhttp3</groupId>
  55. <artifactId>okhttp</artifactId>
  56. <version>4.9.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.google.code.gson</groupId>
  60. <artifactId>gson</artifactId>
  61. <version>2.8.7</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-devtools</artifactId>
  66. <scope>runtime</scope>
  67. <optional>true</optional>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.mysql</groupId>
  71. <artifactId>mysql-connector-j</artifactId>
  72. <scope>runtime</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.projectlombok</groupId>
  76. <artifactId>lombok</artifactId>
  77. <optional>true</optional>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-test</artifactId>
  82. <scope>test</scope>
  83. </dependency>
  84. </dependencies>
  85. <build>
  86. <finalName>jiaoxuelou_houtai</finalName>
  87. <plugins>
  88. <plugin>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-maven-plugin</artifactId>
  91. <configuration>
  92. <excludes>
  93. <exclude>
  94. <groupId>org.projectlombok</groupId>
  95. <artifactId>lombok</artifactId>
  96. </exclude>
  97. </excludes>
  98. </configuration>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. </project>