Hi,
I'm using the Retrotranslator plugin and couldn't find all of the command
line options [1] in the listing of optional parameters for the plugin [2]. I
used the following configuration and did not receive any errors when
building with maven. However, I'm still wondering if it used the reflection
and stripannot options (these are the ones I couldn't find in [2]).
Thanks!
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>retrotranslator-maven-plugin</artifactId>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>translate</goal>
</goals>
<configuration>
<filesets>
<fileset>
<directory>${project.build.outputDirectory}</directory>
<includes>
<include>**/*.class</include>
</includes>
</fileset>
</filesets>
<target>1.5</target>
<reflection>safe</reflection>
<stripannot>true</stripannot>
<verbose>true</verbose>
</configuration>
</execution>
</executions>
</plugin>
[1] http://retrotranslator.sourceforge.net/#commandline
[2]
http://mojo.codehaus.org/retrotranslator-maven-plugin/translate-mojo.html
--
best,
-oscar
Oscar CastaƱeda