[jboss-jira] [JBoss JIRA] Created: (JBBUILD-359) Add retroweaving of classes or jars in a directory

Reshat Sabiq (JIRA) jira-events at lists.jboss.org
Mon Apr 23 16:51:30 EDT 2007


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


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

        



More information about the jboss-jira mailing list