How can the maven-remote-resources-plugin be used on a war?

In the source war I have:
                        <plugin>
        
<artifactId>maven-remote-resources-plugin</artifactId>
                                <executions>
                                        <execution>
                                                <goals>
                                                        <goal>bundle</goal>
                                                </goals>
                                                <configuration>
                                                        <includes>
        
<param>**/*.xml</param>
                                                        </includes>
                                                </configuration>
                                        </execution>
                                </executions>
                        </plugin>

In the destination war I have:
                        <plugin>
        
<artifactId>maven-remote-resources-plugin</artifactId>
                                <executions>
                                        <execution>
                                                <goals>
                                                        <goal>process</goal>
                                                </goals>
                                                <configuration>
                                                        <resourceBundles>
        
<resourceBundle>${project.groupId}:my-destination-project:${project.version}
</resourceBundle>
                                                        </resourceBundles>
                                                </configuration>
                                        </execution>
                                </executions>
                        </plugin>

When I package I get:
org.apache.maven.lifecycle.LifecycleExecutionException: Unknown archiver
type


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to