被封装的maven插件怎么使用
发布网友
发布时间:2022-09-30 00:28
我来回答
共1个回答
热心网友
时间:2024-11-24 14:57
maven为该问题提供了Resource Transformers插件,用以指定需要续写的文件名,以防配置信息丢失。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>