[
http://jira.jboss.com/jira/browse/JBBUILD-359?page=all ]
Paul Gier updated JBBUILD-359:
------------------------------
Fix Version/s: jboss-retro-maven-plugin-1.0
Add retroweaving of classes or jars in a directory
--------------------------------------------------
Key: JBBUILD-359
URL:
http://jira.jboss.com/jira/browse/JBBUILD-359
Project: JBoss Build System
Issue Type: Feature Request
Components: jboss-retro-maven-plugin
Affects Versions: jboss-retro-maven-plugin-0.5.GA
Reporter: Reshat Sabiq
Assigned To: Paul Gier
Fix For: jboss-retro-maven-plugin-1.0
Original Estimate: 1 week, 2 days
Remaining Estimate: 1 week, 2 days
It would be nice to be able to translate classes and jars in a directory, kinda like
this:
<execution>
<id>retroweave-war-classes</id>
<phase>package</phase>
<goals>
<goal>translate</goal>
</goals>
<configuration>
<filesets>
<fileset>
<directory>
target/my-project-${project.version}/WEB-INF/classes
</directory>
<includes>
<include>**/*.class</include>
</includes>
</fileset>
</filesets>
<verbose>true</verbose>
</configuration>
</execution>
<execution>
<id>retroweave-dependencies</id>
<phase>package</phase>
<goals>
<goal>translate</goal>
</goals>
<configuration>
<jarfilesets>
<jarfileset>
<directory>
target/my-project-${project.version}/WEB-INF/lib
</directory>
<includes>
<include>**/*.jar</include>
</includes>
</jarfileset>
</jarfilesets>
<lazy>true</lazy>
</configuration>
</execution>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira