sbglasius commented on issue #15207:
URL: https://github.com/apache/grails-core/issues/15207#issuecomment-3491428456

   Turns out, that when running an application as a `bootJar` (and probably 
also `bootWar`) this is needed in the `build.gradle`
   
   ```
   // This section makes the bootJar file runnable
   tasks.named('bootJar') {
       // Ensure Micronaut jars are unpacked in the loader
       requiresUnpack(
               "**/micronaut-core*.jar",
               "**/micronaut-context*.jar",
               "**/micronaut-inject*.jar",
               "**/micronaut-aop*.jar"
       )
   }
   ```
   
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to