Hello everyone,

I am pleased to announce the release of the Retrotranslator Maven Plugin version 1.0-alpha-2.

 * * *

This version includes:

* Latest Retrotranslator v1.2.1 (big upgrade from last version which was using 1.0.8) * New goals to translate Maven projects (translate-project and translate-war) * Supports same fileset/jarfileset/dirset configuration as the Ant task

Due to the last item, the configuration had to be changed again though... :-( Basically since more than one fileset per-type can be configured, what used to be:

----8<----
<fileset>
    <basedir>${project.build.outputDirectory}</basedir>
    <includes>
        <include>**/*.class</include>
    </includes>
</fileset>
---->8----

Is now:

----8<----
<filesets>
    <fileset>
        <directory>${project.build.outputDirectory}</directory>
        <includes>
            <include>**/*.class</include>
        </includes>
    </fileset>
</filesets>
---->8----

 * * *

Site docs are updated here:

    http://mojo.codehaus.org/retrotranslator-maven-plugin

Release artifacts are currently here:

http://repository.codehaus.org/org/codehaus/mojo/retrotranslator- maven-plugin/1.0-alpha-2/

Artifacts should be on the central repository in an hour or so.

--jason

---------------------------------------------------------------------
To unsubscribe from this list please visit:

   http://xircles.codehaus.org/manage_email

Reply via email to