You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Will Hoover <ja...@gmail.com> on 2009/03/22 16:20:26 UTC

[maven-remote-resources-plugin] resources in a war results in Unknown archiver type

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: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org