Skip to content

Instantly share code, notes, and snippets.

@qijianchuan
Created June 22, 2019 04:14
Show Gist options
  • Save qijianchuan/e8c913e1f77e3b65446058f486c34eb0 to your computer and use it in GitHub Desktop.
Save qijianchuan/e8c913e1f77e3b65446058f486c34eb0 to your computer and use it in GitHub Desktop.
Maven构建Servlet项目
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