On 9/4/07, Matt Raible <[EMAIL PROTECTED]> wrote: > On 9/4/07, Trent <[EMAIL PROTECTED]> wrote: > > On Tue, 4 Sep 2007 01:39:20 -0600, Matt Raible wrote > > > The 2.0 series of AppFuse has a minumum requirement of the following > > > specification versions: > > > > > > - Java Servlet 2.4 and JSP 2.0 (2.1 for JSF) > > > - Java 5+ > > > > Is this for development, or deployment? > > I was under the impression that Appfuse 2 used retroweaver or similar? > > This is for development. In theory, Retroweaver should be possible. > However, I tried the maven-retroweaver-plugin a couple months ago and > it failed completely. Unfortunately, I can't seem to find the mailing > list message where I tried to get help. > > Matt >
You might try the retrotranslator-maven-plugin and see what happens: http://mojo.codehaus.org/retrotranslator-maven-plugin/ I would like to get this working if you have time to look into it. Matt Example: <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>retrotranslator-maven-plugin</artifactId> <executions> <execution> <goals> <goal>translate-war</goal> </goals> <configuration> <classifier>jdk1.4</classifier> <attach>true</attach> </configuration> </execution> </executions> </plugin> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
