jira-importer commented on issue #85:
URL: 
https://github.com/apache/maven-ejb-plugin/issues/85#issuecomment-2879263585

   **[Adam 
Barry](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=ajbarry)** 
commented
   
   As a workaround I used the following antrun plugin task:
   
   ```xml
   <plugin>
     <artifactId>maven-antrun-plugin</artifactId>
     <executions>
       <execution>
         <phase>process-classes</phase>
         <configuration>
           <tasks>
             <copydir src="${project.build.outputDirectory}"
                      
dest="${project.build.directory}/${project.build.finalName}-exploded.jar"/>
           </tasks>
         </configuration>
         <goals>
           <goal>run</goal>
         </goals>
       </execution>
     </executions>
   </plugin>
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to