我使用 maven-resources-plugin 从不同的项目树复制单个WSDL文件,如下所示:
<execution>
<id>copy-wsdl-and-rename-it</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/src/main/wsdl</outputDirectory>
<resources>
<resource>
<directory>${basedir}/../myws/src/main/wsdl</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
这很好用,但现在我需要将该wsdl目录下的(单个)文件重命名为其他内容(例如,从源目录中的myws.wsdl
重命名为目标目录中的my.wsdl
。 / p>
有没有办法实现这一点,使用maven-resources-plugin 而无需借助其他插件?
答案 0 :(得分:2)
I don't see a way to do exactly what you're asking for.为什么你有不使用其他插件的限制?如果你改变主意,那就是答案:Renaming resources in Maven