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

   **[Michal 
Galet](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=galet)** 
commented
   
   If you just want to include your dependencies into your EJB jar file a 
simple workaround is:
   
   ```xml
   <build>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-dependency-plugin</artifactId>
         <executions>
           <execution>
             <phase>process-resources</phase>
             <goals>
               <goal>copy-dependencies</goal>
             </goals>
           </execution>
         </executions>
         <configuration>
           <outputDirectory>target/classes</outputDirectory>
           <includeScope>runtime</includeScope>
         </configuration>
       </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