我在pom.xml中需要两个wsdl2java目标,并且希望将Java文件写入两个不同的文件夹中。有人可以告诉我该怎么做吗?目前,我的pom.xml中包含以下内容,并且我看到其仅适用于第一个wsdl2java目标,而不适用于第二个wsdl2java目标。

   <build>
  <plugins>
     <plugin>
        <groupId>org.apache.cxf</groupId>
        <artifactId>cxf-codegen-plugin</artifactId>
        <executions>
           <execution>
              <id>generate-sources</id>
              <phase>generate-sources</phase>
              <configuration>
                 <sourceRoot>target/generated-sources/test/java</sourceRoot>
                 <wsdlOptions>
                    <wsdlOption>
                       <wsdl>src/main/resources/wsdl/test/GetInfo.wsdl</wsdl>
                       <extraargs>
                          <extraarg>-server</extraarg>
                          <extraarg>-client</extraarg>
                          <extraarg>-impl</extraarg>
                          <extraarg>-verbose</extraarg>
                       </extraargs>
                       <frontEnd>jaxws21</frontEnd>
                       <faultSerialVersionUID>1</faultSerialVersionUID>
                    </wsdlOption>
                 </wsdlOptions>
              </configuration>
              <goals>
                 <goal>wsdl2java</goal>
              </goals>
           </execution>
        </executions>
     </plugin>
     <plugin>
        <groupId>org.apache.cxf</groupId>
        <artifactId>cxf-codegen-plugin</artifactId>
        <executions>
           <execution>
              <id>generate-sources</id>
              <phase>generate-sources</phase>
              <configuration>
                 <sourceRoot>target/generated-sources/testOne/java</sourceRoot>
                 <wsdlOptions>
                    <wsdlOption>
                       <wsdl>src/main/resources/wsdl/testOne/CustomerDetails.wsdl</wsdl>
                       <extraargs>
                          <extraarg>-server</extraarg>
                          <extraarg>-client</extraarg>
                          <extraarg>-impl</extraarg>
                          <extraarg>-verbose</extraarg>
                       </extraargs>
                       <frontEnd>jaxws21</frontEnd>
                       <faultSerialVersionUID>1</faultSerialVersionUID>
                    </wsdlOption>
                 </wsdlOptions>
              </configuration>
              <goals>
                 <goal>wsdl2java</goal>
              </goals>
           </execution>
        </executions>
     </plugin>
  </plugins>





请指教。

最佳答案

创建两个different build profile并两次调用mvn,一次用于两个配置文件,或尝试使用不同的配置as suggested here多次执行

10-08 12:52