Last active
July 11, 2019 01:43
-
-
Save onlyeat3/c92bd90f59e4c78478fd773ab6be5104 to your computer and use it in GitHub Desktop.
在自定义文件中启用maven内置变量,需要额外处理
This file contains hidden or 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
这些配置是可继承的,如果是多模块项目,放到父工程即可 | |
<resources> | |
<resource> | |
<directory>src/main/resources</directory> | |
<filtering>true</filtering> | |
<includes> | |
<include>**/*</include> | |
</includes> | |
</resource> | |
<resource> | |
<directory>src/main/java</directory> | |
<includes> | |
<include>**/*.xml</include> | |
</includes> | |
</resource> | |
</resources> | |
<plugins> | |
<plugin> | |
<artifactId>maven-resources-plugin</artifactId> | |
<configuration> | |
<encoding>utf-8</encoding> | |
<useDefaultDelimiters>true</useDefaultDelimiters> | |
</configuration> | |
</plugin> | |
</plugins> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment