pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.sf</groupId>
  5. <artifactId>springmvc-demo</artifactId>
  6. <packaging>war</packaging>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>springmvc-demo Maven Webapp</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <spring.version>6.1.2</spring.version>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.junit.jupiter</groupId>
  17. <artifactId>junit-jupiter</artifactId>
  18. <version>5.10.1</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>jakarta.servlet</groupId>
  22. <artifactId>jakarta.servlet-api</artifactId>
  23. <version>6.1.0-M1</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-webmvc</artifactId>
  28. <version>${spring.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-test</artifactId>
  33. <version>${spring.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>jakarta.annotation</groupId>
  37. <artifactId>jakarta.annotation-api</artifactId>
  38. <version>3.0.0-M1</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>cglib</groupId>
  42. <artifactId>cglib</artifactId>
  43. <version>3.3.0</version>
  44. </dependency>
  45. <!-- maven search -->
  46. <!-- <dependency>-->
  47. <!-- <groupId>org.springframework</groupId>-->
  48. <!-- <artifactId>spring-context</artifactId>-->
  49. <!-- <version>6.1.1</version>-->
  50. <!-- </dependency>-->
  51. <dependency>
  52. <groupId>org.springframework</groupId>
  53. <artifactId>spring-aspects</artifactId>
  54. <version>${spring.version}</version>
  55. </dependency>
  56. <!--aspectj支持-->
  57. <dependency>
  58. <groupId>org.aspectj</groupId>
  59. <artifactId>aspectjrt</artifactId>
  60. <version>1.9.21.M1</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.aspectj</groupId>
  64. <artifactId>aspectjweaver</artifactId>
  65. <version>1.9.21.M1</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>mysql</groupId>
  69. <artifactId>mysql-connector-java</artifactId>
  70. <version>8.0.33</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.alibaba</groupId>
  74. <artifactId>druid</artifactId>
  75. <version>1.2.20</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework</groupId>
  79. <artifactId>spring-jdbc</artifactId>
  80. <version>${spring.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.projectlombok</groupId>
  84. <artifactId>lombok</artifactId>
  85. <version>1.18.30</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework</groupId>
  89. <artifactId>spring-tx</artifactId>
  90. <version>${spring.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework</groupId>
  94. <artifactId>spring-orm</artifactId>
  95. <version>${spring.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.mybatis</groupId>
  99. <artifactId>mybatis</artifactId>
  100. <version>3.5.14</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.mybatis</groupId>
  104. <artifactId>mybatis-spring</artifactId>
  105. <version>3.0.3</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.slf4j</groupId>
  109. <artifactId>slf4j-log4j12</artifactId>
  110. <version>2.0.9</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.thymeleaf</groupId>
  114. <artifactId>thymeleaf-spring6</artifactId>
  115. <version>3.1.2.RELEASE</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.thymeleaf</groupId>
  119. <artifactId>thymeleaf</artifactId>
  120. <version>3.1.2.RELEASE</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>com.fasterxml.jackson.core</groupId>
  124. <artifactId>jackson-databind</artifactId>
  125. <version>2.16.0</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.webjars</groupId>
  129. <artifactId>webjars-locator</artifactId>
  130. <version>0.50</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.webjars</groupId>
  134. <artifactId>bootstrap</artifactId>
  135. <version>5.3.2</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.webjars</groupId>
  139. <artifactId>jquery</artifactId>
  140. <version>3.7.1</version>
  141. </dependency>
  142. </dependencies>
  143. <build>
  144. <finalName>springmvc-demo</finalName>
  145. <plugins>
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-compiler-plugin</artifactId>
  149. <version>3.11.0</version>
  150. <configuration>
  151. <parameters>true</parameters>
  152. <source>17</source>
  153. <target>17</target>
  154. </configuration>
  155. </plugin>
  156. </plugins>
  157. </build>
  158. </project>