maven pom.xml基本设置
Posted 隐语者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven pom.xml基本设置相关的知识,希望对你有一定的参考价值。
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!-- 允许创建jsp页面 -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<!-- 导入springmvc依赖的jar包 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.0.6.RELEASE</version>
</dependency>
</dependencies>
<build>
<finalName>SpringMVC_Maven</finalName>
<plugins>
<!--设置编译的JDK版本 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
</plugins>
</build>
以上是关于maven pom.xml基本设置的主要内容,如果未能解决你的问题,请参考以下文章