Resolve Gradle configuration conflicts - #5
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| "$JAVA_CMD" -version >/dev/null 2>&1 || { | ||
| echo "Java not found, please install JDK" >&2 | ||
| exit 1 | ||
| } | ||
|
|
||
| exec "$JAVA_CMD" -Dorg.gradle.appname=gradlew -classpath "$DIR/gradle/wrapper/gradle-wrapper.jar" org.gradle.wrapper.GradleWrapperMain "$@" |
There was a problem hiding this comment.
Gradle wrapper unusable without wrapper JAR
The added wrapper script expects gradle/wrapper/gradle-wrapper.jar, but that file is not present anywhere in the repo (find . -name gradle-wrapper.jar returns nothing). Any attempt to run ./gradlew … will fail before build configuration is evaluated because the wrapper main class cannot be found. Please commit the wrapper JAR (or generate it) alongside the scripts.
Useful? React with 👍 / 👎.
Summary
Testing
Codex Task