pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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>3.1.1</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.kxs</groupId>
  12. <artifactId>adminap</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <packaging>war</packaging>
  15. <name>adminap</name>
  16. <description>Demo project for Spring Boot</description>
  17. <properties>
  18. <java.version>17</java.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-actuator</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-data-jpa</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-data-redis</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.session</groupId>
  43. <artifactId>spring-session-data-redis</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.mybatis</groupId>
  47. <artifactId>mybatis</artifactId>
  48. <version>3.5.13</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.mybatis</groupId>
  52. <artifactId>mybatis-spring</artifactId>
  53. <version>2.0.7</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-devtools</artifactId>
  58. <scope>runtime</scope>
  59. <optional>true</optional>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.mysql</groupId>
  63. <artifactId>mysql-connector-j</artifactId>
  64. <scope>runtime</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-tomcat</artifactId>
  69. <scope>provided</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-test</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>io.projectreactor</groupId>
  78. <artifactId>reactor-test</artifactId>
  79. <scope>test</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.alibaba</groupId>
  83. <artifactId>fastjson</artifactId>
  84. <version>2.0.34</version>
  85. </dependency>
  86. <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-api -->
  87. <dependency>
  88. <groupId>io.jsonwebtoken</groupId>
  89. <artifactId>jjwt-api</artifactId>
  90. <version>0.11.5</version>
  91. </dependency>
  92. <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-impl -->
  93. <dependency>
  94. <groupId>io.jsonwebtoken</groupId>
  95. <artifactId>jjwt-impl</artifactId>
  96. <version>0.11.5</version>
  97. <scope>runtime</scope>
  98. </dependency>
  99. <!-- https://mvnrepository.com/artifact/io.jsonwebtoken/jjwt-jackson -->
  100. <dependency>
  101. <groupId>io.jsonwebtoken</groupId>
  102. <artifactId>jjwt-jackson</artifactId>
  103. <version>0.11.5</version>
  104. <scope>runtime</scope>
  105. </dependency>
  106. </dependencies>
  107. <build>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-maven-plugin</artifactId>
  112. </plugin>
  113. <plugin>
  114. <groupId>org.mybatis.generator</groupId>
  115. <artifactId>mybatis-generator-maven-plugin</artifactId>
  116. <version>1.4.0</version>
  117. <executions>
  118. <execution>
  119. <id>Generate MyBatis Artifacts</id>
  120. <goals>
  121. <goal>generate</goal>
  122. </goals>
  123. </execution>
  124. </executions>
  125. <configuration>
  126. <!-- 输出详细信息 -->
  127. <verbose>true</verbose>
  128. <!-- 覆盖生成文件 -->
  129. <overwrite>true</overwrite>
  130. <!-- 定义配置文件 -->
  131. <configurationFile>${basedir}/src/main/resources/generator-configuration.xml</configurationFile>
  132. </configuration>
  133. </plugin>
  134. </plugins>
  135. </build>
  136. </project>