pom.xml配置文件内容记录

Posted youcandomore

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pom.xml配置文件内容记录相关的知识,希望对你有一定的参考价值。

<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>
<groupId>com.lf</groupId>
<artifactId>springBootDemo1</artifactId>
<version>0.0.1-SNAPSHOT</version>


<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
<relativePath />
</parent>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>

</project>


































以上是关于pom.xml配置文件内容记录的主要内容,如果未能解决你的问题,请参考以下文章

一个使用maven创建的springmvc项目的pom.xml文件配置内容及介绍

maven的pom.xml配置文件中常用的配置标签解析(2018-03-13)

maven 03-pom.xml核心配置

maven项目 pom.xml文件解析

ssm整合配置文件记录

maven 配置文件 settings.xml pom.xml