Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 1.0-alpha-4
-
Fix Version/s: None
-
Labels:None
-
Environment:Maven 2.0.9
Kubuntu 8.10
Sun's JDK 1.6.0_10
Building Tiles test webapp
-
Number of attachments :
Description
When running translate-war goal, attached to the build lifecycle, it produces a ClassCastException.
Attached there is a log about the exception.
This is my configuration:
<profile>
<id>j4</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>retrotranslator-maven-plugin</artifactId>
<version>1.0-alpha-4</version>
<executions>
<execution>
<id>retrotranslate</id>
<goals>
<goal>translate-war</goal>
</goals>
<configuration>
<jarfileset>
<includes>
<include>tiles-*.jar</include>
</includes>
</jarfileset>
<classifier>j4</classifier>
<attach>true</attach>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
You can see it live here (replacing the version of the plugin with 1.0-alpha-4):
http://svn.apache.org/repos/asf/tiles/framework/trunk/tiles-test/
Just to complete the request, it works with 1.0-alpha-2 but not with 1.0-alpha-3.