9

我使用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目标目录)。

有没有办法做到这一点,使用 maven-resources-plugin,而不诉诸另一个插件?

4

1 回答 1

4

我看不到完全按照您的要求做的方法。 为什么你有不使用其他插件的限制?如果你改变主意,这里就是答案:在 Maven 中重命名资源

于 2013-12-10T01:23:56.973 回答