bito-code-review[bot] commented on PR #16247:
URL: https://github.com/apache/grails-core/pull/16247#issuecomment-5455445346
<!-- Bito Reply -->
The import `com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar` is
indeed incompatible with the `com.gradleup.shadow` plugin, as the latter uses a
different package structure. To fix this, you should remove the explicit import
and configure the task by name, which is the standard approach for Gradle tasks
provided by plugins.
Replace the import and task configuration in
`grails-forge/grails-forge-web-netty/build.gradle` with the following:
```gradle
// Remove: import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
shadowJar {
// Configure the task directly by name
}
```
**grails-forge/grails-forge-web-netty/build.gradle**
```
shadowJar {
// Configure the task directly by name
}
```
--
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]