jamesfredley commented on PR #600:
URL: https://github.com/apache/grails-forge/pull/600#issuecomment-2997635858

   This will need a few changes in GradleConfiguration to map the Scope to a 
GradleConfiguration.
   
   Something like:
   
   
   
   ```
   TEST_AND_DEVELOPMENT_ONLY("testAndDevelopmentOnly", 2),
   ```
   
   
   ```
   if (scope.getPhases().contains(Phase.DEVELOPMENT_ONLY)) {
       if(scope == Scope.DEVELOPMENT_ONLY) {
           return Optional.of(GradleConfiguration.DEVELOPMENT_ONLY);
       }
       else {
           return Optional.of(GradleConfiguration.TEST_AND_DEVELOPMENT_ONLY);
       }
   }
   ```
   
   The failure is unrelated to this change:
   
   ```
   * What went wrong:
   Could not determine the dependencies of task ':bootWar'.
   > Could not create task ':assetCompile'.
      > Could not set unknown property 'destinationDirectory' for task 
':assetCompile' of type asset.pipeline.gradle.AssetCompile.
   ```


-- 
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