Created
June 22, 2019 04:14
-
-
Save qijianchuan/e8c913e1f77e3b65446058f486c34eb0 to your computer and use it in GitHub Desktop.
Maven构建Servlet项目
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Servlet依赖 | |
```language | |
<dependency> | |
<groupId>javax.servlet</groupId> | |
<artifactId>javax.servlet-api</artifactId> | |
<version>3.0.1</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>javax.servlet.jsp</groupId> | |
<artifactId>jsp-api</artifactId> | |
<version>2.1</version> | |
<scope>provided</scope> | |
</dependency> | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment