![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [org.springframework:spring-webmvc](https://github.com/spring-projects/spring-framework) from 4.3.6.RELEASE to 5.2.20.RELEASE. - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v4.3.6.RELEASE...v5.2.20.RELEASE) --- updated-dependencies: - dependency-name: org.springframework:spring-webmvc dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
210 lines
7.6 KiB
XML
210 lines
7.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<groupId>com.atguigu</groupId>
|
||
<artifactId>ssm_crud</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
<packaging>war</packaging>
|
||
|
||
<name>ssm_crud Maven Webapp</name>
|
||
<!-- FIXME change it to the project's website -->
|
||
<url>http://www.example.com</url>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<maven.compiler.source>1.7</maven.compiler.source>
|
||
<maven.compiler.target>1.7</maven.compiler.target>
|
||
</properties>
|
||
|
||
<!-- 引入项目依赖的包-->
|
||
<dependencies>
|
||
|
||
<!--1.Spring Spring MVC-->
|
||
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
|
||
<dependency>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring-webmvc</artifactId>
|
||
<version>5.2.20.RELEASE</version>
|
||
</dependency>
|
||
|
||
<!--2.Spring-JDBC-->
|
||
<!-- https://mvnrepository.com/artifact/org.springframework/spring-jdbc -->
|
||
<dependency>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring-jdbc</artifactId>
|
||
<version>4.3.6.RELEASE</version>
|
||
</dependency>
|
||
|
||
<!--3.Spring 面向切面编程-->
|
||
<!-- https://mvnrepository.com/artifact/org.springframework/spring-aspects -->
|
||
<dependency>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring-aspects</artifactId>
|
||
<version>4.3.6.RELEASE</version>
|
||
</dependency>
|
||
|
||
<!--4.MyBatis-->
|
||
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
|
||
<dependency>
|
||
<groupId>org.mybatis</groupId>
|
||
<artifactId>mybatis</artifactId>
|
||
<version>3.4.2</version>
|
||
</dependency>
|
||
|
||
<!--5.MyBatis 整合 Spring 的适配包-->
|
||
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis-spring -->
|
||
<dependency>
|
||
<groupId>org.mybatis</groupId>
|
||
<artifactId>mybatis-spring</artifactId>
|
||
<version>1.3.1</version>
|
||
</dependency>
|
||
|
||
<!--6.数据库连接池驱动-->
|
||
<!-- https://mvnrepository.com/artifact/c3p0/c3p0 -->
|
||
<dependency>
|
||
<groupId>c3p0</groupId>
|
||
<artifactId>c3p0</artifactId>
|
||
<version>0.9.1.2</version>
|
||
</dependency>
|
||
|
||
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
<version>8.0.28</version>
|
||
</dependency>
|
||
|
||
<!--jstl,servlet-api,junit-->
|
||
<!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
|
||
<dependency>
|
||
<groupId>javax.servlet</groupId>
|
||
<artifactId>jstl</artifactId>
|
||
<version>1.2</version>
|
||
</dependency>
|
||
|
||
<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
|
||
<dependency>
|
||
<groupId>javax.servlet</groupId>
|
||
<artifactId>javax.servlet-api</artifactId>
|
||
<version>3.1.0</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!-- https://mvnrepository.com/artifact/junit/junit -->
|
||
<dependency>
|
||
<groupId>junit</groupId>
|
||
<artifactId>junit</artifactId>
|
||
<version>4.11</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<!-- MBG -->
|
||
<!-- https://mvnrepository.com/artifact/org.mybatis.generator/mybatis-generator-core -->
|
||
<dependency>
|
||
<groupId>org.mybatis.generator</groupId>
|
||
<artifactId>mybatis-generator-core</artifactId>
|
||
<version>1.3.5</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.junit.jupiter</groupId>
|
||
<artifactId>junit-jupiter</artifactId>
|
||
<version>RELEASE</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
<!--spring Test-->
|
||
<!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
|
||
<dependency>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring-test</artifactId>
|
||
<version>4.3.6.RELEASE</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring-test</artifactId>
|
||
<version>4.3.6.RELEASE</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>junit</groupId>
|
||
<artifactId>junit</artifactId>
|
||
<version>4.12</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
<!--引入pageHelper分页插件 -->
|
||
<dependency>
|
||
<groupId>com.github.pagehelper</groupId>
|
||
<artifactId>pagehelper</artifactId>
|
||
<version>5.0.0</version>
|
||
</dependency>
|
||
|
||
<!--list页面中setAttribute的引用-->
|
||
<dependency>
|
||
<groupId>javax.servlet</groupId>
|
||
<artifactId>jsp-api</artifactId>
|
||
<version>2.0</version>
|
||
<scope>provided</scope>
|
||
</dependency>
|
||
|
||
<!--返回json字符串的支持-->
|
||
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
|
||
<dependency>
|
||
<groupId>com.fasterxml.jackson.core</groupId>
|
||
<artifactId>jackson-databind</artifactId>
|
||
<version>2.12.6.1</version>
|
||
</dependency>
|
||
|
||
<!--JSR303数据校验 tomcat7以上服务器直接导入-->
|
||
<!-- https://mvnrepository.com/artifact/org.hibernate.validator/hibernate-validator -->
|
||
<dependency>
|
||
<groupId>org.hibernate.validator</groupId>
|
||
<artifactId>hibernate-validator</artifactId>
|
||
<version>7.0.4.Final</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
|
||
<build>
|
||
<finalName>ssm_crud</finalName>
|
||
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
|
||
<plugins>
|
||
<plugin>
|
||
<artifactId>maven-clean-plugin</artifactId>
|
||
<version>3.1.0</version>
|
||
</plugin>
|
||
<!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
|
||
<plugin>
|
||
<artifactId>maven-resources-plugin</artifactId>
|
||
<version>3.0.2</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>3.8.0</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-surefire-plugin</artifactId>
|
||
<version>2.22.1</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-war-plugin</artifactId>
|
||
<version>3.2.2</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-install-plugin</artifactId>
|
||
<version>2.5.2</version>
|
||
</plugin>
|
||
<plugin>
|
||
<artifactId>maven-deploy-plugin</artifactId>
|
||
<version>2.8.2</version>
|
||
</plugin>
|
||
</plugins>
|
||
</pluginManagement>
|
||
</build>
|
||
</project>
|