pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <groupId>com.cdxw</groupId>
  7. <artifactId>spring_mvc_demo</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>war</packaging>
  10. <dependencies>
  11. <!-- SpringMVC -->
  12. <dependency>
  13. <groupId>org.springframework</groupId>
  14. <artifactId>spring-webmvc</artifactId>
  15. <version>5.3.1</version>
  16. </dependency>
  17. <!-- 日志 -->
  18. <dependency>
  19. <groupId>ch.qos.logback</groupId>
  20. <artifactId>logback-classic</artifactId>
  21. <version>1.2.3</version>
  22. </dependency>
  23. <!-- ServletAPI -->
  24. <dependency>
  25. <groupId>javax.servlet</groupId>
  26. <artifactId>javax.servlet-api</artifactId>
  27. <version>4.0.1</version>
  28. <scope>provided</scope>
  29. </dependency>
  30. <!-- Spring5和Thymeleaf整合包 -->
  31. <dependency>
  32. <groupId>org.thymeleaf</groupId>
  33. <artifactId>thymeleaf-spring5</artifactId>
  34. <version>3.0.12.RELEASE</version>
  35. </dependency>
  36. </dependencies>
  37. </project>