You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.2 KiB
78 lines
2.2 KiB
<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/maven-v4_0_0.xsd"> |
|
<modelVersion>4.0.0</modelVersion> |
|
<groupId>cc.bnblogs</groupId> |
|
<artifactId>springmvcdemo</artifactId> |
|
<packaging>war</packaging> |
|
<version>1.0-SNAPSHOT</version> |
|
<name>springmvcdemo Maven Webapp</name> |
|
<url>http://maven.apache.org</url> |
|
<dependencies> |
|
<!--添加依赖--> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-webmvc</artifactId> |
|
<version>5.3.0</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.projectlombok</groupId> |
|
<artifactId>lombok</artifactId> |
|
<version>1.18.26</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.alibaba</groupId> |
|
<artifactId>fastjson</artifactId> |
|
<version>2.0.25</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>javax.servlet-api</artifactId> |
|
<version>4.0.1</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>commons-io</groupId> |
|
<artifactId>commons-io</artifactId> |
|
<version>2.11.0</version> |
|
</dependency> |
|
<!--文件上传--> |
|
<dependency> |
|
<groupId>commons-fileupload</groupId> |
|
<artifactId>commons-fileupload</artifactId> |
|
<version>1.5</version> |
|
</dependency> |
|
|
|
<!--jstl--> |
|
<dependency> |
|
<groupId>jstl</groupId> |
|
<artifactId>jstl</artifactId> |
|
<version>1.2</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.taglibs</groupId> |
|
<artifactId>taglibs-standard-impl</artifactId> |
|
<version>1.2.5</version> |
|
<scope>runtime</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>javax.validation</groupId> |
|
<artifactId>validation-api</artifactId> |
|
<version>2.0.1.Final</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.hibernate.validator</groupId> |
|
<artifactId>hibernate-validator</artifactId> |
|
<version>6.0.23.Final</version> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<finalName>springmvcdemo</finalName> |
|
</build> |
|
</project>
|
|
|