maven项目pom.xml需要的一些配置

Posted Valivvali

tags:

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

<build>

<!--使用maven进行clean,install时默认版本不支持,需指定版本、编码方式 -->
 <finalName>***</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>

<!--编译后的项目dao目录下没有.xml文件,需要手动配置 -->

<resources>
<resource>
<directory>${basedir}/src/main/java</directory>
<includes>
<!--无法加载.properties文件也是如此-->
<!-- <include>**/*.properties</include>  -->
     <include>**/*.xml</include>
</includes>
</resource>
</resources>
</build>

以上是关于maven项目pom.xml需要的一些配置的主要内容,如果未能解决你的问题,请参考以下文章

maven项目pom.xml需要的一些配置

Maven 全局插件配置

创建maven项目pom.xml第一行报错

pom.xml

Maven 的 pom 文件生命周期

eclipse mave 配置启动报错