Java-maven-shangcheng-parent-web-配置

<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>

<parent>

<groupId>com.xx</groupId>

<artifactId>xx-manager</artifactId>

<version>0.0.1-SNAPSHOT</version>

</parent>

<artifactId>xx-manager-web</artifactId>

<packaging>war</packaging>

<!-- 添加依赖 -->

<dependencies>

<dependency>

<groupId>com.xx</groupId>

<artifactId>xx-manager-service</artifactId>

<version>0.0.1-SNAPSHOT</version>

</dependency>

<!-- JSP相关 -->

<dependency>

<groupId>jstl</groupId>

<artifactId>jstl</artifactId>

</dependency>

<dependency>

<groupId>javax.servlet</groupId>

<artifactId>servlet-api</artifactId>

<scope>provided</scope>

</dependency>

<dependency>

<groupId>javax.servlet</groupId>

<artifactId>jsp-api</artifactId>

<scope>provided</scope>

</dependency>

<!-- 文件上传组件 -->

<dependency>

<groupId>commons-fileupload</groupId>

<artifactId>commons-fileupload</artifactId>

</dependency>

</dependencies>

</project>

原文地址:https://www.cnblogs.com/gangzi4321/p/11497263.html