Taack commented on issue #15032:
URL: https://github.com/apache/grails-core/issues/15032#issuecomment-3242685860

   Is `api` mandatory ? (in asset-pipeline-bom)
   
   ```groovy
   dependencies {
       constraints {
           for (Project subproject : rootProject.subprojects) {
               if (subproject.path == project.path || !(subproject.name in 
rootProject.ext.publishedProjects)) {
                   continue // ignore self
               }
   
               if (subproject.name == 'asset-pipeline-gradle') {
                   continue // gradle dependencies are separate from build 
dependencies so do not include them in the bom
               }
   
               api project(":${subproject.path}")
           }
       }
   }
   ```


-- 
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: notifications-unsubscr...@grails.apache.org

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

Reply via email to