pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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.13</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>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-devtools</artifactId>
  61. <scope>runtime</scope>
  62. <optional>true</optional>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.mysql</groupId>
  66. <artifactId>mysql-connector-j</artifactId>
  67. <scope>runtime</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.projectlombok</groupId>
  71. <artifactId>lombok</artifactId>
  72. <optional>true</optional>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-test</artifactId>
  77. <scope>test</scope>
  78. </dependency>
  79. </dependencies>
  80. <build>
  81. <finalName>LargeScreenOfTeachingBuilding</finalName>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-maven-plugin</artifactId>
  86. <configuration>
  87. <excludes>
  88. <exclude>
  89. <groupId>org.projectlombok</groupId>
  90. <artifactId>lombok</artifactId>
  91. </exclude>
  92. </excludes>
  93. </configuration>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>